/* ================================================================
   FORTRESS INDIA — Shared Design System
   Typography: Playfair Display (headings) + Inter (body)
   Palette: Warm ivory · Deep charcoal · Maroon · Antique gold
   Ratio: 80% ivory · 12% charcoal · 5% maroon · 2% gold
   ================================================================ */

/* 1. FONTS ----------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

/* 2. DESIGN TOKENS -------------------------------------------- */
:root {
  /* Light backgrounds */
  --bg:              #F5EFE6;
  --bg-alt:          #EDE6DA;
  --bg-inset:        #E6DDD0;

  /* Dark backgrounds — deep warm charcoal (NOT maroon — no large maroon blocks) */
  --bg-deep:         #1C1814;
  --bg-mid:          #272320;

  /* Text — light contexts */
  --text-primary:    #2B2B2B;
  --text-secondary:  #7A6A5A;

  /* Text — dark contexts */
  --text-on-dark:    #F5EFE6;
  --text-gold:       #C2A15A;

  /* Accent */
  --accent:          #6B1F1F;
  --accent-gold:     #C2A15A;

  /* Rules */
  --rule:            #D8CEBC;
  --rule-light:      #D8CEBC;
  --rule-dark:       #3A3330;
  --rule-gold:       #C2A15A;

  /* Links */
  --link:            #2B2B2B;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    Inter, system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-prose: 800px;
  --max-wide:  1100px;
  --section-v: 6rem;
  --prose-width: 660px;
}

/* 2b. EM / I OVERRIDE ----------------------------------------- */
/* Emphasised text: Playfair Display regular, slightly heavier */
em, i {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
}

/* 3. RESET & BASE --------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* 4. GRAIN TEXTURE OVERLAY ------------------------------------ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* 5. TYPOGRAPHY ----------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

p {
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

blockquote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.1rem;
  border-left: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  color: var(--text-primary);
  background-color: var(--bg-inset);
  max-width: 620px;
  line-height: 1.75;
}

blockquote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

/* 6. LINKS ---------------------------------------------------- */
a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.25s ease, color 0.25s ease;
}

a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-gold);
}

/* 7. LAYOUT --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container--prose {
  max-width: var(--max-prose);
}

.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* 7b. ANNOUNCE BAR -------------------------------------------- */
:root {
  --topbar-h: 34px;
}

.announce-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  height: var(--topbar-h);
  background-color: var(--bg-mid);
  border-bottom: 1px solid rgba(194, 161, 90, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  max-width: var(--max-wide);
  overflow: hidden;
}

.announce-slot {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  justify-content: center;
  transition: opacity 0.45s ease;
}

.announce-slot.fade-out {
  opacity: 0;
}

.announce-sep {
  width: 1px;
  height: 12px;
  background: rgba(194, 161, 90, 0.25);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

.announce-label {
  color: var(--accent-gold);
  font-weight: 500;
  flex-shrink: 0;
}

.announce-divider {
  color: rgba(194, 161, 90, 0.35);
  flex-shrink: 0;
}

.announce-text {
  color: rgba(245, 239, 230, 0.65);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announce-text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 161, 90, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.announce-text a:hover {
  color: rgba(245, 239, 230, 0.95);
  border-color: rgba(194, 161, 90, 0.7);
}

/* Hide second slot on small screens */
@media (max-width: 768px) {
  .announce-slot--alt,
  .announce-sep {
    display: none;
  }
}

/* 8. NAVIGATION ----------------------------------------------- */
.site-header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 100;
  background-color: var(--bg);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--rule);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

/* Dark nav state — toggled by JS when scrolled over dark sections */
.site-header--on-dark {
  background-color: var(--bg-deep);
  border-top-color: var(--accent-gold);
  border-bottom-color: var(--rule-dark);
}

.site-header--on-dark .brand a {
  color: var(--text-on-dark);
}

.site-header--on-dark .nav-link {
  color: rgba(234, 228, 213, 0.65);
}

.site-header--on-dark .nav-link:hover {
  color: var(--text-on-dark);
  border-bottom-color: rgba(201, 168, 76, 0.5);
}

.site-header--on-dark .nav-link.active {
  color: var(--text-on-dark);
  border-bottom-color: var(--accent-gold);
}

.site-header--on-dark .menu-toggle span {
  background-color: var(--text-on-dark);
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.95rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.brand a {
  color: inherit;
  border-bottom: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: none;
  padding-bottom: 3px;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}

/* Animated underline: gold, slides in from left */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  border-bottom: none;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
  font-weight: 500;
}

.nav-link.active::after {
  width: 100%;
  background-color: var(--accent);
}

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* 9. HERO ----------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Light hero topographic contour */
.hero::after {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 700'%3E%3Cellipse cx='450' cy='350' rx='430' ry='310' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3Cellipse cx='450' cy='350' rx='370' ry='265' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3Cellipse cx='450' cy='350' rx='310' ry='220' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3Cellipse cx='450' cy='350' rx='250' ry='175' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3Cellipse cx='450' cy='350' rx='190' ry='130' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3Cellipse cx='450' cy='350' rx='130' ry='85' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3Cellipse cx='450' cy='350' rx='70' ry='45' fill='none' stroke='%238B3A1A' stroke-width='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 2.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.hero-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2rem auto;
  width: 60px;
}

.hero-epigraph {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  border-left: 1px solid var(--accent);
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.hero-epigraph cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.hero-author {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

.hero-author a {
  color: var(--text-secondary);
  border-bottom-color: var(--rule);
}

.hero-author a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

/* Small hero for inner pages */
.hero--small {
  min-height: 0;
  padding: 5rem 2rem 3.5rem;
}

.hero--small .hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero--small .hero-subtitle {
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  pointer-events: none;
  z-index: 2;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 32px;
  background: var(--accent-gold);
  opacity: 0.5;
}

/* 10. DARK SECTION BASE -------------------------------------- */
.section-dark {
  background-color: var(--bg-deep);
  color: var(--text-on-dark);
}

.section-mid {
  background-color: var(--bg-mid);
  color: var(--text-on-dark);
}

.section-inset {
  background-color: var(--bg-inset);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-mid h1,
.section-mid h2,
.section-mid h3,
.section-mid h4 {
  color: var(--text-on-dark);
}

.section-dark p,
.section-mid p {
  color: var(--text-on-dark);
}

.section-dark a,
.section-mid a {
  color: var(--text-on-dark);
  border-bottom-color: var(--rule-dark);
}

.section-dark a:hover,
.section-mid a:hover {
  color: var(--text-gold);
  border-bottom-color: rgba(201, 168, 76, 0.5);
}

.section-dark blockquote,
.section-mid blockquote {
  border-left-color: var(--accent-gold);
  color: var(--text-on-dark);
}

.section-dark blockquote cite,
.section-mid blockquote cite {
  color: var(--text-gold);
}

/* Dark hero overrides */
.section-dark.hero::after,
.section-dark .hero::after {
  display: none;
}

.section-dark.hero::before,
.section-dark .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section-dark .hero-title,
.section-dark .hero-subtitle,
.section-mid .hero-title,
.section-mid .hero-subtitle {
  color: var(--text-on-dark);
}

.section-dark .hero-subtitle,
.section-mid .hero-subtitle {
  color: rgba(234, 228, 213, 0.72);
}

.section-dark .hero-epigraph,
.section-mid .hero-epigraph {
  border-left-color: var(--accent-gold);
  color: rgba(234, 228, 213, 0.82);
}

.section-dark .hero-epigraph cite,
.section-mid .hero-epigraph cite {
  color: var(--text-gold);
}

.section-dark .hero-rule,
.section-mid .hero-rule {
  border-top-color: var(--accent-gold);
}

/* 11. GOLD LABEL & RULE -------------------------------------- */
.label-gold {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 1.25rem;
}

.rule-gold {
  width: 50px;
  height: 1px;
  background: var(--accent-gold);
  border: none;
  margin: 1.5rem auto;
}

/* 12. SECTION LABELS & HEADINGS ------------------------------ */
.section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-family: var(--font-body);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.55;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 3rem 0;
  max-width: 640px;
  color: var(--text-primary);
}

/* 12b. ELEPHANT HERO ----------------------------------------- */
.hero--elephant {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 7rem 2rem 4rem;
  max-width: var(--max-wide);
  margin: 0 auto;
  text-align: left;
}

/* Override the full-width/centered defaults for this hero */
.hero.hero--elephant-wrap {
  min-height: 82vh;
  display: block;
  padding: 0;
  text-align: left;
}

.hero.hero--elephant-wrap::after {
  display: none;
}

.hero.hero--elephant-wrap::before {
  display: none;
}

.elephant-text {
  padding-right: 1rem;
}

.elephant-text .label-gold {
  margin-bottom: 1rem;
}

.elephant-text .hero-title {
  text-align: left;
}

.elephant-text .hero-subtitle {
  text-align: left;
}

.elephant-text .hero-epigraph {
  margin: 0;
  max-width: 100%;
}

.elephant-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
}

.elephant-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: sepia(20%) saturate(85%) brightness(1.02);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

.elephant-caption {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-top: 0.5rem;
  border-top: 1px solid var(--rule);
  margin-top: 0.5rem;
  text-align: right;
  width: 100%;
  max-width: 520px;
}

@media (max-width: 768px) {
  .hero--elephant {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: 0;
    padding: 6rem 1.5rem 2rem;
  }

  .elephant-image-wrap {
    align-items: center;
  }

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

  .elephant-image {
    max-width: 100%;
  }
}

/* 13. WHAT IS FORTRESS INDIA --------------------------------- */
.what-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--rule);
}

.what-inner {
  max-width: 680px;
}

.what-inner p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.what-inner p:first-of-type {
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* 13b. CALL TO BUILD TOGETHER -------------------------------- */
.call-section {
  padding: var(--section-v) 0;
}

.call-inner {
  max-width: 720px;
}

.call-list {
  list-style: none;
  border-top: 1px solid var(--rule-dark);
}

.call-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(234, 228, 213, 0.75);
  line-height: 1.6;
}

.call-who {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin-right: 0.4em;
}

/* 13c. HOME PHOTO STRIP -------------------------------------- */
.home-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.strip-item {
  margin: 0;
}

.strip-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
  filter: saturate(0.88) brightness(1.01);
  transition: filter 0.25s ease;
}

.strip-item img:hover {
  filter: saturate(0.96) brightness(1.03);
}

.strip-item figcaption {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-top: 0.5rem;
  font-family: var(--font-body);
  line-height: 1.5;
}

/* 14. CORE PILLARS ------------------------------------------- */
.pillars-header {
  padding-top: var(--section-v);
  border-top: 1px solid var(--rule);
  margin-bottom: 3rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pillar-card {
  padding: 2rem 1.75rem;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.pillar-card:nth-child(even) {
  border-right: none;
}

.pillar-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.pillar-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* 15. TOWARDS CONTINUITY ------------------------------------- */
.continuity-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--rule);
}

.continuity-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.continuity-inner p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
}

.continuity-inner p:first-of-type {
  font-size: 1.15rem;
}

/* 15. VIDEO SECTION ------------------------------------------ */
.video-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--rule);
}

.video-meta {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.video-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.video-subheading {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-style: normal;
}

.video-frame {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--rule);
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}

/* 16. ENGAGEMENTS -------------------------------------------- */
.engagements-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--rule);
}

.engagements-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.tweet-embed {
  display: flex;
  justify-content: center;
}

/* 17. JOIN SECTION ------------------------------------------- */
.join-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--rule);
}

.join-inner {
  max-width: 600px;
}

.join-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.join-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.join-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: background 0.25s ease, color 0.25s ease;
}

.join-link:hover {
  background: var(--accent);
  color: var(--bg);
  border-bottom: 1px solid var(--accent);
}

/* 18. BTN OUTLINE -------------------------------------------- */
.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: 0;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  border-bottom: 1px solid var(--accent);
}

.section-dark .btn-outline,
.section-mid .btn-outline {
  color: var(--text-on-dark);
  border-color: rgba(245, 239, 230, 0.4);
}

.section-dark .btn-outline:hover,
.section-mid .btn-outline:hover {
  background: var(--text-on-dark);
  color: var(--bg-deep);
  border-bottom-color: var(--text-on-dark);
}

/* 19. FOUR VERTICALS ----------------------------------------- */
.verticals-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--rule-dark);
}

.verticals-intro {
  max-width: 680px;
  margin-bottom: 4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.8;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.vertical-item {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--rule-dark);
  border-right: 1px solid var(--rule-dark);
}

.vertical-item:nth-child(even) {
  border-right: none;
}

.vertical-numeral {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.vertical-rule {
  width: 28px;
  height: 1px;
  background: var(--accent-gold);
  margin-bottom: 1rem;
  opacity: 0.55;
  border: none;
}

.vertical-item h3,
.vertical-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.vertical-item p,
.vertical-text {
  font-size: 0.97rem;
  opacity: 0.75;
  margin-bottom: 0;
  color: var(--text-on-dark);
}

/* 20. ADVISORY PREVIEW (home page) --------------------------- */
.advisory-preview-section {
  padding: var(--section-v) 0;
}

.advisory-preview-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto 3rem;
  border-top: 1px solid var(--rule-dark);
  border-left: 1px solid var(--rule-dark);
}

.advisory-preview-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--rule-dark);
  border-right: 1px solid var(--rule-dark);
}

.preview-name {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.preview-role {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold);
  font-family: var(--font-body);
  line-height: 1.55;
}

/* 21. VK SINGH QUOTE ----------------------------------------- */
.vksingh-section {
  padding: calc(var(--section-v) * 1.4) 0;
  background-color: var(--bg-inset);
}

.vksingh-inner {
  max-width: 720px;
  margin: 0 auto;
}

.vksingh-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 0;
  color: var(--text-primary);
  max-width: 100%;
}

.vksingh-quote p {
  margin-bottom: 1rem;
}

.vksingh-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

/* 22. MEMBERS (Team & Advisory) ------------------------------ */
.members-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.5rem;
  row-gap: 0;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 6rem;
  border-top: 1px solid var(--rule);
}

.member-entry {
  display: flex;
  gap: 1.25rem;
  padding: 2.5rem 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--rule);
}

.member-entry:nth-child(even) {
  padding-left: 3.5rem;
  border-left: 1px solid var(--rule);
}

.member-photo-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 130px;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.member-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(1.02);
}

.member-photo-wrap--contain img {
  object-fit: contain;
  background-color: var(--bg-alt);
}

.member-photo-empty {
  width: 110px;
  height: 130px;
  flex-shrink: 0;
  background-color: var(--bg-alt);
  border: 1px solid var(--rule);
}

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

.member-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.member-role {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  margin-bottom: 0.85rem;
}

.member-bio p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.member-bio p:last-child {
  margin-bottom: 0;
}

/* 23. SKV FEATURED (team page) ------------------------------- */
.skv-feature {
  padding: var(--section-v) 0;
  border-bottom: 1px solid var(--rule);
}

.skv-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.skv-photo-wrap {
  flex-shrink: 0;
}

.skv-photo-wrap img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
}

.skv-role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
  display: block;
}

.skv-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.skv-descriptor {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.skv-bio p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.skv-bio p:last-child {
  margin-bottom: 0;
}

.skv-link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.skv-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Forthcoming Books Table */
.skv-upcoming-heading {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.upcoming-heading {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.upcoming-books {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.upcoming-books th {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}

.upcoming-books td {
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rule);
  color: var(--text-secondary);
}

.upcoming-books tr:last-child td {
  border-bottom: none;
}

/* 24. GALLERY GRID ------------------------------------------- */
.photo-grid {
  columns: 3;
  column-gap: 1.5rem;
  margin-top: 3rem;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 2.5rem;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule);
  filter: saturate(0.88) brightness(1.01);
  transition: filter 0.25s ease;
}

.photo-item img:hover {
  filter: saturate(0.95) brightness(1.03);
}

.photo-title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-top: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.photo-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* 25. MCMAHON PHOTO ESSAY ------------------------------------ */
.photo-essay {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.essay-item {
  margin-bottom: 5rem;
}

.essay-item:last-child {
  margin-bottom: 2rem;
}

.essay-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule);
}

.essay-caption {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--rule);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.65;
  font-family: var(--font-body);
}

/* 26. FOOTER ------------------------------------------------- */
.site-footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding-top: 5rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
}

.footer-grid {
  max-width: var(--max-wide);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 2rem;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  border-bottom: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--text-secondary);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.6rem;
}

.footer-devanagari {
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-copyright {
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

/* 27. SCROLL REVEAL ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elements in dark sections: no reveal shift (avoid layout shift on bg-less elements) */
.section-dark .reveal,
.section-mid .reveal {
  transition: opacity 0.7s ease;
  transform: none;
}

.section-dark .reveal.visible,
.section-mid .reveal.visible {
  transform: none;
}

/* 28. RESPONSIVE --------------------------------------------- */

/* Base: prevent horizontal overflow everywhere */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

p, h1, h2, h3, h4, h5, h6, li, blockquote, figcaption {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Tablet landscape (≤1100px) ────────────────────────────── */
@media (max-width: 1100px) {
  .hero--elephant {
    gap: 2.5rem;
    padding: 6rem 2rem 3.5rem;
  }

  .skv-inner {
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
  }

  .skv-photo-wrap img {
    width: 200px;
    height: 260px;
  }

  .members-list {
    column-gap: 2rem;
  }

  .photo-grid {
    columns: 2;
  }
}

/* ── Tablet / Phone (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-v: 3rem;
  }

  /* — Nav — */
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background-color: var(--bg);
    border-left: 1px solid var(--rule);
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 1.75rem;
    transition: right 0.3s ease;
    z-index: 200;
    overflow-y: auto;
  }

  .site-nav.open {
    right: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .site-header--on-dark .site-nav {
    background-color: var(--bg-deep);
    border-left-color: var(--rule-dark);
  }

  .site-header--on-dark .site-nav .nav-link {
    color: rgba(234, 228, 213, 0.75);
  }

  /* — Hero elephant — */
  .hero.hero--elephant-wrap {
    min-height: 0;
  }

  .hero--elephant {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
    padding: 5.5rem 1.5rem 2.5rem;
  }

  .elephant-text .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .elephant-image-wrap {
    align-items: center;
    justify-content: center;
  }

  .elephant-image {
    max-width: 280px;
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  }

  .elephant-caption {
    text-align: center;
    max-width: 280px;
  }

  /* — Hero (inner pages) — */
  .hero--small {
    padding: 4rem 1.5rem 2.5rem;
    min-height: 0;
  }

  .hero-scroll {
    display: none;
  }

  /* — Core Pillars — */
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    border-right: none !important;
    border-bottom: 1px solid var(--rule) !important;
  }

  .pillar-card:last-child {
    border-bottom: none !important;
  }

  /* — What section — */
  .what-section {
    padding: var(--section-v) 0;
  }

  /* — Call to Build — */
  .call-inner {
    max-width: 100%;
  }

  /* — Photo strip — */
  .home-photo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* — Advisory preview — */
  .advisory-preview-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* — VK Singh quote — */
  .vksingh-section {
    padding: var(--section-v) 0;
  }

  .vksingh-quote {
    font-size: 1rem;
  }

  /* — Video — */
  .video-frame {
    border: none;
  }

  /* — SKV featured — */
  .skv-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .skv-photo-wrap img {
    width: 120px;
    height: 155px;
  }

  .skv-name {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* — Members list — */
  .members-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-top: 0;
    border-top: none;
    margin-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .member-entry {
    flex-direction: row;
    gap: 1.25rem;
    border-top: 1px solid var(--rule);
    border-bottom: none;
    padding: 1.75rem 0;
  }

  .member-entry:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .member-entry:last-child {
    border-bottom: 1px solid var(--rule);
  }

  .member-photo-wrap,
  .member-photo-empty {
    width: 90px;
    height: 110px;
    flex-shrink: 0;
  }

  /* — Verticals — */
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .vertical-item {
    border-right: none !important;
  }

  /* — Footer — */
  .site-footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-bottom {
    padding: 1.5rem 1.5rem 0;
  }
}

/* ── Small phone (≤480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-v: 2.5rem;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero--elephant {
    padding: 5rem 1.25rem 2rem;
  }

  .elephant-text .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .elephant-image {
    max-width: 240px;
  }

  .hero--small {
    padding: 3.5rem 1.25rem 2rem;
  }

  .home-photo-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .photo-grid {
    columns: 1;
  }

  .member-entry {
    flex-direction: column;
    gap: 1rem;
  }

  .member-photo-wrap,
  .member-photo-empty {
    width: 80px;
    height: 100px;
  }

  .skv-photo-wrap img {
    width: 100px;
    height: 130px;
  }

  .advisory-preview-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .preview-name {
    font-size: 0.95rem;
  }

  .vksingh-quote {
    font-size: 0.95rem;
    padding-left: 1rem;
  }

  .call-list li {
    font-size: 0.92rem;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .join-link {
    width: 100%;
    text-align: center;
    display: block;
  }

  .footer-grid {
    padding: 0 1.25rem;
  }

  .footer-bottom {
    padding: 1.5rem 1.25rem 0;
  }
}

/* ── Very small phone (≤380px) ─────────────────────────────── */
@media (max-width: 480px) {
  .announce-bar {
    padding: 0 0.75rem;
  }
  .announce-inner {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
  .announce-slot {
    gap: 0.35rem;
  }
  .announce-label {
    display: none;
  }
  .announce-divider {
    display: none;
  }
}

@media (max-width: 380px) {
  .elephant-text .hero-title {
    font-size: 1.75rem;
  }

  .brand {
    font-size: 0.95rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* 29. PRINT -------------------------------------------------- */
@media print {
  body::before { display: none; }
  .site-header { position: static; }
  .menu-toggle { display: none; }
  .section-dark, .section-mid {
    background-color: white !important;
    color: black !important;
  }
  .section-dark *, .section-mid * { color: black !important; }
  .hero { min-height: 0; padding: 2rem 0; page-break-after: always; }
  .reveal { opacity: 1; transform: none; }
  a { border-bottom: none; color: inherit; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
  .site-footer { margin-top: 2rem; }
}
