/* =================================================================
   TYPOGRAPHY FAMILIES (PrimeTime Headings & Gontserrat Body)
   ================================================================= */
@font-face {
  font-family: 'PrimeTime';
  src: url('primetime/PRIMETIME И PERSONAL USE ONLY.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gontserrat';
  src: url('gontserrat/Gontserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gontserrat';
  src: url('gontserrat/Gontserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gontserrat';
  src: url('gontserrat/Gontserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gontserrat';
  src: url('gontserrat/Gontserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gontserrat';
  src: url('gontserrat/Gontserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Architectural Palette: Pure Black Base, Dark Goldenrod, Cornsilk, Ochre */
  --pure-black: #000000;     /* Primary base background */
  --dark-goldenrod: #a59132; /* Rich bronze tones for architectural lines & accents */
  --cornsilk: #fffbdb;       /* Creamy pale yellow shade for exquisite typography */
  --ochre: #da7422;          /* Burnt orange utilized for signature logo & active elements */

  /* Surface Hierarchy */
  --bg-primary: #000000;     /* Pure Black Base */
  --bg-secondary: #0a0a09;   /* Subtle elevation tone */
  --bg-tertiary: #141310;    /* Modal & card contrast surface */
  --bg-modal: rgba(10, 10, 9, 0.98);
  --border-subtle: rgba(165, 145, 50, 0.25); /* Dark Goldenrod divider line */
  --border-active: #da7422;  /* Ochre active line */
  
  /* Typography Hierarchy */
  --font-heading: 'PrimeTime', -apple-system, system-ui, sans-serif;
  --font-base: 'Gontserrat', -apple-system, system-ui, sans-serif;
  
  --text-primary: #fffbdb;   /* Cornsilk for all headlines and primary typography */
  --text-secondary: rgba(255, 251, 219, 0.82); /* Soft Cornsilk for reading comfort */
  --text-accent: #da7422;    /* Ochre for categorical badges & highlights */
  --semi-primary: #a59132;   /* Dark Goldenrod for secondary metrics & controls */
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 52px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Minimalist Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--semi-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ochre);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Photographic Anti-Download & Anti-Drag Shielding */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

/* Apply PrimeTime font to all Headings and Logos */
h1, h2, h3, .logo, .slide-title, .thumb-title, .about-header h1, .section-header h1, .footer-brand {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

/* =================================================================
   NAVIGATION BAR
   ================================================================= */
.masthead {
  height: var(--header-height);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 251, 219, 0.68);
  transition: var(--transition-smooth);
  padding: 0.3rem 0;
  position: relative;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.nav-links a.nav-active,
.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--ochre);
}

.nav-divider {
  color: rgba(255, 251, 219, 0.25);
  font-size: 0.8rem;
  user-select: none;
}

.lang-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cornsilk); /* OFF state on English pages */
  transition: var(--transition-smooth);
}

.lang-toggle-btn.active {
  color: var(--ochre); /* ON state on Hindi pages */
}

.lang-toggle-btn:hover {
  opacity: 0.85;
}

/* =================================================================
   FEATURED SLIDER: GIANT HERO PHOTOGRAPHY (NO BLANK SPACES)
   ================================================================= */
.hero-section {
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.slider-wrapper {
  display: flex;
  flex-direction: column;
}

/* Unbordered, Boxless Stage: Giant image dominating the view without blank space */
.slider-stage {
  position: relative;
  width: 100%;
  height: calc(100vh - 52px);
  min-height: calc(100vh - 52px);
  max-height: calc(100vh - 52px);
  background: #000;  /* NO BOX BACKGROUND */
  border: none;             /* NO BOX BORDER */
  box-shadow: none;         /* NO BOX SHADOW */
  border-radius: 0;         /* ZERO ROUNDED CORNERS */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;  /* KEEPS IMAGE IN THE MIDDLE */
}

.slide-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide-img-layer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.slide-img-layer img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* PERFECT ORIGINAL RATIO, ZERO CROPPING */
  border-radius: 0;    /* ZERO ROUNDED CORNERS */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-img-layer.active img {
  transform: scale(1.01);
}

/* Toolbar flush directly beneath giant image (zero blank space) */
.photo-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 0.6rem;
  border-bottom: none;
  margin-bottom: 0.8rem;
  user-select: none;
}

.bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slide-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.toolbar-divider {
  color: var(--semi-primary);
  font-weight: 300;
}

.meta-badge,
.archive-location {
  font-size: 0.82rem;
  color: var(--text-accent);
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
}

.bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Boxless, crisp < > controls directly below the photograph */
.clean-nav-btn {
  background: none;
  border: none;
  color: var(--cornsilk);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 0.2rem;
  line-height: 1;
  transition: var(--transition-smooth);
}

.clean-nav-btn:hover {
  color: var(--ochre);
  transform: scale(1.25);
}

/* Narrative Section below photo controls */
.slider-narrative-box {
  position: relative;
  display: grid;
  width: 100%;
}

.narrative-content {
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 440px) 1fr;
  gap: 2rem 5rem;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.narrative-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Headings in PrimeTime font: Sculptural and prominently anchored on the left */
.slide-title {
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* Body typography in Gontserrat font: Sprawling across the open right breadth */
.slide-caption {
  font-size: 1.02rem;
  color: rgba(255, 251, 219, 0.82);
  line-height: 1.8;
  font-weight: 300;
  max-width: 100%;
}

/* Progress DOTS located directly BELOW THE CAPTION with compact spacing */
.caption-dots-container {
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 251, 219, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active, .dot:hover {
  background: var(--ochre);
  transform: scale(1.4);
}

/* =================================================================
   ABOUT PAGE FOUNDING MANIFESTO & PORTRAIT SPREAD
   ================================================================= */
.about-founder-spread {
  margin: 2.5rem 0 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(380px, 500px) 1fr;
  gap: 4.5rem 5.5rem;
  align-items: flex-start;
}

.founder-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-photo-box {
  width: 100%;
  max-height: 640px;
  border-radius: 0; /* NO ROUNDED CORNERS */
  overflow: hidden;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0; /* NO ROUNDED CORNERS */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .founder-col:hover .founder-photo-box img {
    transform: scale(1.02);
  }
}

.founder-nameplate {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.founder-role {
  font-size: 0.82rem;
  color: var(--text-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-name {
  font-size: 1.6rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.movement-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-top: 0.5rem;
}

.movement-headline {
  font-size: 2.6rem;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 0.2rem;
}

.movement-lead {
  font-size: 1.32rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
}

.movement-body {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
}

/* =================================================================
   COLLECTION GALLERY: TWO IMAGES PER ROW (Not three)
   ================================================================= */
.gallery-section {
  padding: 4rem 6% 8rem;
  max-width: 1560px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 2.2rem;
}

.section-header h1 {
  font-size: 3rem;
  color: var(--text-primary);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-top: 0.6rem;
}

/* TWO IMAGES IN ONE ROW AS REQUESTED */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem 3.5rem;
}

.thumbnail-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.thumb-image-wrap {
  width: 100%;
  height: 340px;
  border-radius: 0; /* NO rounded corners */
  overflow: hidden;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.thumb-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* NO rounded corners */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .thumbnail-card:hover .thumb-image-wrap {
    border-color: var(--ochre);
  }

  .thumbnail-card:hover .thumb-image-wrap img {
    transform: scale(1.04);
  }
}

.thumb-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.thumb-meta {
  font-size: 0.82rem;
  color: var(--text-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Headings in Moon Get font */
.thumb-title {
  font-size: 1.7rem;
  color: var(--text-primary);
  line-height: 1.25;
  min-height: 2.5em; /* 2 lines of text to ensure alignment */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Snippet in Gontserrat body font */
.thumb-snippet {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =================================================================
   ABOUT MANIFESTO PAGE: WIDESCREEN EDITORIAL SPREAD
   ================================================================= */
.about-page-wrap {
  padding: 3.5rem 6% 6rem;
  max-width: 1560px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 2.2rem;
}

.about-header h1 {
  font-size: 3.4rem;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-header p.lead {
  font-size: 1.45rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 1100px;
}

/* 3-Column Magazine Grid utilizing full screen breadth */
.about-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 4rem;
  align-items: start;
  margin-bottom: 5.5rem;
}

.about-section-block p {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* About Footer Block below Founder Spread */
.about-footer-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

/* Manifesto quote spans full width in ONE unbroken line on desktop */
.manifesto-statement {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.28vw, 1.38rem);
  color: var(--ochre);
  line-height: 1.4;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Inquiries line at bottom of about content */
.inquiries-line {
  padding-top: 2.2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cornsilk);
}

.inquiries-line a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.inquiries-line a:hover {
  color: var(--cornsilk);
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  padding: 4.5rem 6%;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.footer-brand {
  font-size: 1.2rem;
  color: var(--ochre);
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-email {
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-email a {
  color: var(--ochre);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.footer-email a:hover {
  color: var(--cornsilk);
  text-decoration: underline;
}

/* =================================================================
   NATIVE LIGHTBOX DIALOG (Original ratio, zero rounded corners)
   ================================================================= */
dialog#lightbox {
  background: var(--bg-modal);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid var(--border-active);
  border-radius: 0;
  color: var(--text-primary);
  width: 94vw;
  max-width: 1340px;
  max-height: 92vh;
  padding: 0;
  margin: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

dialog#lightbox::backdrop {
  background: rgba(5, 5, 4, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  height: 84vh;
  max-height: 820px;
  background: var(--bg-secondary);
}

.modal-image-container {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
  border-right: 1px solid var(--border-subtle);
}

.modal-image-container img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; 
  border-radius: 0;
}

.modal-text-container {
  padding: 4rem 2.8rem 2.8rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-tertiary);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--semi-primary);
  border: 1px solid var(--cornsilk);
  color: var(--cornsilk);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 30;
}

.close-btn:hover {
  background: var(--ochre);
  color: var(--cornsilk);
  transform: scale(1.08);
}

.modal-nav {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.modal-btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  background: var(--semi-primary);
  border: 1px solid transparent;
  color: var(--cornsilk);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-btn:hover {
  background: var(--ochre);
  border-color: var(--cornsilk);
  color: var(--cornsilk);
}

/* =================================================================
   DUAL-COLUMN EDITORIAL BROADSHEET MONOGRAPH (No AI Web Conventions)
   ================================================================= */
.editorial-page-wrap {
  padding: 3rem 5% 7rem;
  max-width: 1540px;
  margin: 0 auto;
}

.editorial-ledger-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 3.5rem;
}

.ledger-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-accent);
}

.editorial-header-spread {
  margin-bottom: 4.5rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--text-primary);
}

.broadsheet-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.broadsheet-subtitle {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}

.broadsheet-byline {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ochre);
}

.broadsheet-grid {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 6rem;
  align-items: start;
}

/* Left Editorial Margin */
.broadsheet-margin {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: sticky;
  top: 5rem;
}

.margin-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-accent);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.6rem;
  margin-bottom: 1.2rem;
}

.margin-photo-box {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  margin-bottom: 0.8rem;
}

.margin-photo-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(10%) contrast(105%);
}

.margin-caption {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.margin-caption strong {
  color: var(--text-primary);
  font-weight: 600;
}

.mandate-list dt {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.4rem;
  margin-bottom: 0.3rem;
}

.mandate-list dt:first-child { margin-top: 0; }

.mandate-list dd {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-left: 0;
}

.canon-index-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.canon-index-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  line-height: 1.5;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.4rem;
}

.canon-index-links a:hover {
  color: var(--ochre);
  padding-left: 0.3rem;
}

/* Right Prose Column */
.broadsheet-prose {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.broadsheet-prose p {
  font-size: 1.15rem;
  line-height: 1.88;
  color: var(--text-secondary);
  margin: 0;
  text-align: justify;
}

/* Classical Print Newspaper Drop Cap */
.drop-cap {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  float: left;
  line-height: 0.8;
  margin: 0.2rem 0.8rem 0 0;
  color: var(--ochre);
  font-weight: 900;
  text-transform: uppercase;
}

.prose-subheading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

/* Bespoke Discipline Matrix */
.discipline-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.matrix-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.matrix-header {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--ochre);
  letter-spacing: 1px;
  border-bottom: 2px solid var(--text-primary);
  padding-bottom: 0.5rem;
  margin-bottom: 0.3rem;
}

.matrix-col p {
  font-size: 0.96rem;
  line-height: 1.7;
  text-align: left;
}

.matrix-col strong {
  color: var(--text-primary);
}

.prose-divider {
  border: 0;
  height: 1px;
  background: var(--border-subtle);
  margin: 4rem 0;
}

.editorial-faqs {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-dialogue-block {
  border-left: 2px solid var(--ochre);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-question {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--text-primary) !important;
  text-align: left !important;
}

.faq-answer {
  font-size: 1.05rem !important;
  color: var(--text-secondary) !important;
  text-align: left !important;
}

.editorial-citations {
  margin-top: 4rem;
}

.citation-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.citation-list a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.citation-list a:hover {
  color: var(--ochre);
}

/* =================================================================
   RESPONSIVE SYSTEM (Mobile & Tablet Optimization)
   ================================================================= */
@media (max-width: 1024px) {
  .masthead { padding: 0 4%; }
  .slider-stage { height: calc(100vh - 52px); max-height: calc(100vh - 52px); min-height: calc(100vh - 52px); }
  .modal-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 90vh;
  }
  .modal-image-container {
    height: 42vh;
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .modal-text-container { padding: 2.2rem 2rem; max-height: 48vh; }
  .about-header h1 { font-size: 2.6rem; }
  .about-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .narrative-content { display: flex; flex-direction: column; gap: 1.2rem; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .movement-headline { font-size: 2.2rem; }
}

/* =================================================================
   DEDICATED HUMAN-ARCHITECTURAL MOBILE EDITION (No AI-ish stacking)
   ================================================================= */
@media (max-width: 768px) {
  :root { --header-height: 140px; }
  
  /* Masthead: Crisp editorial layout for mobile */
  .masthead {
    padding: 0.8rem 5%;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
  }
  .logo { font-size: 1.1rem; text-align: left; letter-spacing: 1px; flex: 1; }
  .nav-links {
    gap: 0.8rem 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.6rem;
  }
  .nav-divider { display: none; }
  .nav-links a, .lang-toggle-btn { font-size: 0.78rem; letter-spacing: 1px; }

  /* Hero Section: Large tactile field view for smartphones */
  .hero-section {
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}
  .slider-stage { height: 40vh; min-height: 40vh; max-height: 40vh; }
  
  /* Mobile Ergonomics */
  .photo-controls-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 5%;
    margin-bottom: 1rem;
    background: #000;
  }
  .bar-left {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
  }
  .bar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .clean-nav-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  
  .slide-title { font-size: 1.45rem; margin-bottom: 0.5rem; line-height: 1.25; padding: 0 5%; }
  .slide-caption { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); padding: 0 5%; }
  .caption-dots-container { margin-top: 1.5rem; padding: 0 5%; }
  .narrative-content { gap: 0.4rem; padding-bottom: 1rem; }
  
  .home-manifesto-section { padding: 2rem 5% 2rem; }
  .manifesto-grid { gap: 1rem; }
  .movement-headline { font-size: 1.85rem; }
  .movement-lead { font-size: 1.12rem; }
  .founder-photo-box { max-height: 520px; }

  /* Complete Collection: Dedicated Mobile Monograph Spreads */
  .gallery-section { padding: 1.2rem 4% 2.5rem; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h1 { font-size: 2.1rem; }
  
  .gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .thumb-image-wrap { height: 65vw; min-height: 280px; }
  .thumb-title { font-size: 1.5rem; margin-top: 0.4rem; }
  .thumb-snippet { font-size: 0.96rem; line-height: 1.75; }

  /* About Page Mobile Architecture */
  .about-page-wrap { padding: 1.5rem 5% 2.5rem; }
  .about-header h1 { font-size: 2.1rem; margin-bottom: 0.8rem; }
  .about-header p.lead { font-size: 1.14rem; line-height: 1.65; }
  .about-body { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 2rem; }
  .about-section-block p { font-size: 1.05rem; line-height: 1.8; }

  /* On mobile smartphones, transition single line quote into an editorial magazine pull-quote */
  .manifesto-statement {
    white-space: normal;
    font-size: 1.35rem;
    line-height: 1.45;
    overflow: visible;
    text-overflow: unset;
    border-left: 3px solid var(--ochre);
    padding-left: 1.2rem;
  }

  /* Lightbox Dialog */
  dialog#lightbox { width: 96vw; max-height: 94vh; border-radius: 0; }
  .modal-layout { height: 88vh; display: flex; flex-direction: column; }
  .modal-image-container { flex: 0 0 45%; height: 45%; padding: 0.6rem; }
  .modal-text-container { flex: 1; padding: 1.3rem 1.2rem; overflow-y: auto; }
  .close-btn { top: 0.6rem; right: 0.6rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
  .modal-nav { margin-top: 1.2rem; padding-top: 1rem; gap: 0.8rem; }

  /* Dedicated Mobile Broadsheet Edition */
  .editorial-page-wrap { padding: 1.2rem 4% 2.5rem; }
  .editorial-ledger-top { flex-direction: column; gap: 0.4rem; align-items: flex-start; margin-bottom: 2.2rem; }
  .ledger-tag { font-size: 0.72rem; }
  .editorial-header-spread { margin-bottom: 2.5rem; padding-bottom: 1.8rem; }
  .broadsheet-byline { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .broadsheet-byline .toolbar-divider { display: none; }
  
  .broadsheet-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .broadsheet-margin { position: static; order: 2; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
  .broadsheet-prose { order: 1; gap: 1.4rem; }
  .broadsheet-prose p { font-size: 1.05rem; line-height: 1.8; text-align: left; }
  .drop-cap { font-size: 3.6rem; margin: 0.1rem 0.5rem 0 0; }
  
  .discipline-matrix { grid-template-columns: 1fr; gap: 1.2rem; margin: 1rem 0; padding: 1.2rem 0; }
  .faq-section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .masthead { padding: 0.6rem 5%; }
  .slider-stage { height: 35vh; min-height: 35vh; }
  .slide-title { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .slide-caption { font-size: 0.9rem; line-height: 1.5; }
  .photo-controls-bar { padding: 0.5rem 5%; margin-bottom: 0.5rem; }
  .nav-links { gap: 0.5rem 1rem; padding-top: 0.5rem; }
  .nav-links a, .lang-toggle-btn { font-size: 0.75rem; }
  .thumb-image-wrap { height: 68vw; min-height: 230px; }
  .about-header h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
  .manifesto-statement { font-size: 1.1rem; padding-left: 0.8rem; }
  .broadsheet-title { font-size: 1.75rem; line-height: 1.25; }
  .home-manifesto-section { padding: 1.5rem 5% 1.5rem; }
  .manifesto-grid { gap: 1rem; }
  .footer { padding: 1.5rem 5%; font-size: 0.75rem; }
}

/* =================================================================
   ARTICLES SLIDER CONTROLS
   ================================================================= */
.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
}

.article-main-title {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.article-sub-title {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-style: italic;
}

.article-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.article-btn {
  background: none;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

@media (hover: hover) and (pointer: fine) {
  .article-btn:hover:not(.disabled) {
    background: var(--text-primary);
    color: var(--bg-main);
  }
}

.article-btn.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}

.article-dots {
  display: flex;
  gap: 0.6rem;
}

.article-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.article-dot.active {
  background: var(--ochre);
  opacity: 1;
  transform: scale(1.3);
}

@media (hover: hover) and (pointer: fine) {
  .article-dot:hover:not(.active) {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.active-index {
  color: var(--ochre) !important;
  font-weight: bold;
}

.ledger-nav-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  margin-left: 0.5rem;
}
.ledger-nav-btn:hover {
  opacity: 0.7;
}

.ledger-nav-btn.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* =================================================================
   UNCONVENTIONAL NARRATIVE SECTION
   ================================================================= */
.narrative-section {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
  padding: 4rem 6%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.narrative-thumbnail-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 251, 219, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  background: #000;
}

@media (max-width: 900px) {
  .narrative-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .narrative-thumbnail-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* DESKTOP SIDE-BY-SIDE SLIDER LAYOUT */
@media (min-width: 1024px) {
  .slider-wrapper {
    display: grid;
    grid-template-columns: minmax(350px, 450px) 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "controls stage"
      "narrative stage";
    height: calc(100vh - 52px);
    gap: 0 3rem;
  }
  .slider-stage {
    grid-area: stage;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }
  .photo-controls-bar {
    grid-area: controls;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-left: 3rem;
    padding-right: 0;
  }
  .slider-narrative-box {
    grid-area: narrative;
    align-self: start;
    padding-bottom: 2rem;
    padding-left: 3rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .narrative-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-content: start;
  }
}
