/* ============================================================
   Dehaat Foundation — Stylesheet
   Brand: #8C0303 maroon · #D4C680 gold · #942123 button maroon
   Fonts: Poppins (body), Faustina (headings)
   ============================================================ */

:root {
  --maroon: #8C0303;
  --maroon-btn: #942123;
  --maroon-dark: #5a0202;
  --gold: #D4C680;
  --gold-soft: rgba(212, 198, 128, 0.5);
  --gold-shadow: rgba(211, 176, 0, 0.32);
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --bg: #ffffff;
  --bg-soft: #F8F6F0;
  --bg-grey: #EFEFEF;
  --border: #e5e5e5;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.10);
  --shadow-card: 0px 28px 43px -6px var(--gold-shadow);
  --maw: 1200px;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .85; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Faustina', 'Poppins', serif;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.25;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(24px, 3.2vw, 34px); }
h3 { font-size: 22px; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--maw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tinted { background: linear-gradient(180deg, rgba(212,198,128,0) 0%, rgba(212,198,128,0.35) 100%); }
.section-tinted-rev { background: linear-gradient(180deg, rgba(212,198,128,0.35) 0%, rgba(212,198,128,0) 100%); }
.section-soft { background: var(--bg-soft); }
.section-grey { background: var(--bg-grey); }
.center { text-align: center; }
.lead { font-size: 18px; color: var(--text-soft); }
.quote {
  font-family: 'Faustina', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--maroon);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maw); margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand img { height: 52px; width: auto; }
.brand-fallback {
  font-family: 'Faustina', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: -.5px;
}
.brand-fallback small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: .5px;
  margin-top: -2px;
}
.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.nav a.active, .nav a:hover { color: var(--maroon); opacity: 1; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 28px; color: var(--maroon); padding: 4px 10px; line-height: 1;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-top: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    box-shadow: var(--shadow-sm);
  }
  .nav.open { max-height: 400px; }
  .nav a {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
}

/* ---------- HERO SLIDER ---------- */
.hero {
  position: relative;
  height: clamp(520px, 88vh, 820px);
  overflow: hidden;
  background: #2a2a2a;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.32) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero-content h1 {
  color: #fff;
  font-family: 'Faustina', serif;
  font-size: clamp(32px, 5.5vw, 60px);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  max-width: 900px;
  margin: 0;
  line-height: 1.15;
}
.hero-content .tagline {
  color: var(--gold);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 500;
  margin-top: 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
  font-style: italic;
}
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: 0; padding: 0; cursor: pointer;
  transition: background .25s, transform .25s;
}
.hero-dots button.active { background: var(--gold); transform: scale(1.2); }
.hero-curve {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; pointer-events: none; z-index: 4;
}

/* Page hero (smaller) */
.page-hero {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}
.page-hero h1 {
  position: relative; color: #fff; z-index: 1;
  font-family: 'Faustina', serif;
  font-size: clamp(32px, 5vw, 48px);
  margin: 0;
}
.page-hero p {
  position: relative; color: var(--gold); z-index: 1;
  margin: 12px 0 0; font-size: 18px;
  font-style: italic;
}

/* ---------- INTRO ---------- */
.intro {
  padding: 80px 0 32px;
  text-align: center;
}
.intro h1 { color: var(--maroon); margin-bottom: 12px; }

/* ---------- CARD GRID ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 8px solid var(--maroon);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.card h3, .card h4 { color: var(--maroon); margin-bottom: 14px; }
.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.card p { margin: 0 0 10px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
.card.text-left { text-align: left; }
.card.text-left ol { padding-left: 22px; margin: 0; }
.card.text-left li { margin-bottom: 12px; color: var(--text); }
.card.text-left h3, .card.text-left h4 { color: var(--maroon); }

/* ---------- BUTTON ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--maroon-btn);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .5px;
  border: 0; cursor: pointer;
  box-shadow: 0 6px 18px rgba(148,33,35,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(148,33,35,0.45);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--maroon) !important;
  border: 2px solid var(--maroon);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--maroon);
  color: #fff !important;
}
.btn-center { text-align: center; margin-top: 36px; }

/* ---------- VIDEO GRID ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; } }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- PRODUCT PREVIEW THUMBS ---------- */
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .product-thumbs { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
.product-thumbs a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.product-thumbs a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.product-thumbs img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.product-thumbs .label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 24px 16px 16px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
}

/* ---------- DEHAAT STORY CAROUSEL ---------- */
.story {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,198,128,0.12), transparent 50%);
  pointer-events: none;
}
.story h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  font-family: 'Faustina', serif;
  position: relative;
}
.story h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}
.story-track {
  position: relative;
  max-width: 900px; margin: 0 auto;
  padding: 0 60px;
}
.story-slide {
  display: none;
  text-align: center;
}
.story-slide.active {
  display: block;
  animation: fade .6s ease;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.story-slide h3 {
  color: var(--gold);
  font-family: 'Faustina', serif;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 22px;
}
.story-slide p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
}
.story-arrow {
  position: absolute;
  top: 45%;
  background: rgba(255,255,255,0.15);
  border: 0;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.story-arrow:hover { background: rgba(255,255,255,0.3); }
.story-prev { left: 0; }
.story-next { right: 0; }
.story-dots {
  text-align: center;
  margin-top: 36px;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.story-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: 0; cursor: pointer;
  padding: 0; transition: all .2s ease;
}
.story-dots button.active { background: var(--gold); transform: scale(1.25); }
@media (max-width: 560px) {
  .story-track { padding: 0 50px; }
  .story-arrow { width: 38px; height: 38px; font-size: 18px; }
}

/* ---------- ACTIVITIES ---------- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .activity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .activity-grid { grid-template-columns: 1fr; } }
.activity {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px -8px var(--gold-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: var(--maroon);
  cursor: pointer;
  display: block;
}
.activity:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -10px rgba(140,3,3,0.25);
  opacity: 1;
}
.activity-img {
  width: 100%;
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 48px;
}
.activity img {
  width: 100%; aspect-ratio: 16/11; object-fit: cover;
}
.activity h4 {
  padding: 18px 22px;
  margin: 0;
  color: var(--maroon);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .5px;
}

/* ---------- WOMEN OF DEHAAT BANNER ---------- */
.women-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
  position: relative;
}
.women-banner img { width: 100%; height: auto; display: block; }

/* ---------- MEMBERS ---------- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}
@media (max-width: 900px) { .members-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .members-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; } }
.member { text-align: center; }
.member-img {
  width: 160px; height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 5px solid var(--maroon);
  overflow: hidden;
  background: linear-gradient(135deg, #f0e5c8, #d4c680);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Faustina', serif;
  font-size: 36px;
  color: var(--maroon);
  font-weight: 700;
}
.member-img img { width: 100%; height: 100%; object-fit: cover; }
.member h4 {
  margin: 0 0 4px;
  color: var(--maroon);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.member p {
  margin: 0; color: var(--text-soft);
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- PARTNERS GRID ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 760px) { .partners { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 480px) { .partners { grid-template-columns: repeat(2, 1fr); } }
.partners img {
  max-height: 64px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(40%);
  opacity: 0.85;
  transition: filter .25s ease, opacity .25s ease;
}
.partners img:hover { filter: none; opacity: 1; }
.partner-placeholder {
  height: 64px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  font-size: 12px;
}

/* ---------- PRODUCT PAGE ROWS ---------- */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.product-row:last-child { border-bottom: 0; }
.product-row.reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .product-row, .product-row.reverse {
    grid-template-columns: 1fr; gap: 28px;
  }
  .product-row.reverse > :first-child { order: 0; }
}
.product-row img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.product-row h2 { color: var(--maroon); margin-bottom: 16px; }
.product-row .coming-soon {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: #b87800;
  background: rgba(212,135,0,0.12);
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

/* ---------- PRODUCT SLIDER ---------- */
.product-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #f7f3eb;
  aspect-ratio: 4/3;
}
.product-slider .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex; align-items: center; justify-content: center;
}
.product-slider .slide.active { opacity: 1; }
.product-slider .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.product-slider .slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 0;
  color: var(--maroon);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background .2s ease, transform .2s ease;
}
.product-slider .slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.product-slider .slider-prev { left: 12px; }
.product-slider .slider-next { right: 12px; }
.product-slider .slider-dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.product-slider .slider-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 0; padding: 0; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.product-slider .slider-dots button.active {
  background: var(--maroon);
  transform: scale(1.3);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-gallery img {
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.product-gallery img:hover { transform: scale(1.03); }
.product-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0e5c8, #d4c680);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon);
  font-family: 'Faustina', serif;
  font-size: 20px;
  text-align: center;
  padding: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1f1f1f;
  color: #fff;
  padding: 72px 0 0;
}
.footer-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.footer-top h2 {
  color: #fff;
  font-weight: 600;
  font-family: 'Faustina', serif;
}
.footer-top p { color: rgba(255,255,255,0.7); }

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 950px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}
@media (max-width: 760px) { .contact-info { grid-template-columns: 1fr; gap: 28px; } }
.contact-info .item { padding: 8px 0; }
.contact-info .item h4 {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.contact-info .ic {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.contact-info a { color: #fff; }
.contact-info a:hover { color: var(--gold); opacity: 1; }

.contact-form-wrap {
  background: #fff;
  color: var(--text);
  max-width: 850px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.3);
}
@media (max-width: 600px) { .contact-form-wrap { padding: 32px 24px; margin: 0 16px; } }
.contact-form-wrap h3 {
  text-align: center;
  margin-bottom: 8px;
  color: var(--maroon);
}
.contact-form-wrap p.lead { text-align: center; margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: border-color .2s, background .2s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: 0;
  border-color: var(--maroon);
  background: #fff;
}
.contact-form-wrap textarea { min-height: 150px; resize: vertical; }
.contact-form-wrap button {
  background: var(--maroon-btn);
  color: #fff;
  border: 0;
  padding: 15px 40px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(148,33,35,0.4);
  transition: transform .2s;
}
.contact-form-wrap button:hover { transform: translateY(-2px); }
.form-status {
  margin-top: 16px; padding: 12px 16px;
  border-radius: 6px;
  display: none;
  font-size: 14px;
}
.form-status.success { display: block; background: #e8f5e9; color: #2e7d32; }
.form-status.error { display: block; background: #ffebee; color: #c62828; }

.socials {
  display: flex; gap: 14px; justify-content: center;
  padding: 32px 0 24px;
}
.socials a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important;
  font-size: 18px;
  transition: background .2s, transform .2s;
}
.socials a:hover {
  background: var(--maroon);
  opacity: 1;
  transform: translateY(-2px);
}

.copyright {
  background: #000;
  text-align: center;
  padding: 18px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: 0;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 50;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
}

/* ---------- UTILITY ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
