/* ========================================================================
   Rituraj Sinha — Official Website
   Design System: BJP Saffron + Deep Navy + Warm Grey
   Inspired by tejasvisurya.in & narendramodi.in
   ======================================================================== */

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

:root {
  /* Palette */
  --saffron: #F58220;
  --saffron-dark: #E36A0A;
  --saffron-light: #FFA952;
  --saffron-soft: #FFF2E5;
  --navy: #0B1F3A;
  --navy-light: #142E54;
  --navy-soft: #1F3A5F;
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --grey-50: #F8F9FB;
  --grey-100: #F1F3F6;
  --grey-200: #E5E8ED;
  --grey-300: #CBD0D8;
  --grey-500: #6B7280;
  --grey-700: #374151;
  --charcoal: #1A1F2C;
  --gold: #C9A227;

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Inter', 'Segoe UI', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', 'Mukta', sans-serif;

  /* Layout */
  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 6px 18px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 18px 40px rgba(11, 31, 58, 0.16);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1rem; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--saffron-dark);
  margin-bottom: 0.85rem;
  padding-left: 36px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 26px; height: 2px;
  background: var(--saffron);
  transform: translateY(-50%);
}
.section-title { margin-bottom: 0.6rem; }
.section-sub {
  color: var(--grey-500);
  max-width: 720px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(2.5rem, 5vw, 5rem) 0; }
section.section-compact { padding: clamp(2rem, 4vw, 3.5rem) 0; }

/* ===== TOP STRIPE ===== */
.tricolor-stripe {
  display: flex;
  height: 4px;
  width: 100%;
}
.tricolor-stripe span { flex: 1; }
.tricolor-stripe .s1 { background: #FF9933; }
.tricolor-stripe .s2 { background: #FFFFFF; }
.tricolor-stripe .s3 { background: #138808; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.35);
  font-family: var(--font-display);
}
.brand-text { line-height: 1.1; }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}
.brand-text small {
  color: var(--saffron-dark);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 0.1rem; flex-wrap: nowrap; }
.nav a {
  padding: 0.55rem 0.62rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--saffron-dark); }
.nav a.active { color: var(--saffron-dark); font-weight: 700; }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.62rem; right: 0.62rem;
  height: 3px;
  background: var(--saffron);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all .25s ease;
}

@media (max-width: 1200px) {
  .menu-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    align-items: stretch;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--grey-200);
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.85rem 1rem; border-bottom: 1px solid var(--grey-100); white-space: normal; }
  .nav a.active::after { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all .25s var(--ease);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: white;
  box-shadow: 0 6px 16px rgba(245, 130, 32, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245, 130, 32, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  padding: 0.6rem 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn-ghost::after {
  content: '→';
  display: inline-block;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.btn-ghost:hover::after { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--saffron-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  z-index: 2;
}
.text-link .link-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.text-link:hover { color: var(--saffron); }
.text-link:hover .link-arrow { transform: translateX(4px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.75) 55%, rgba(245,130,32,0.30) 100%),
    radial-gradient(circle at 25% 30%, rgba(245,130,32,0.18), transparent 50%),
    #0B1F3A;
  color: white;
  padding: clamp(2rem, 4vw + 0.5rem, 4.5rem) 0 clamp(2rem, 4vw + 0.5rem, 4.5rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -8%; top: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,130,32,0.32), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem;
  background: rgba(245,130,32,0.18);
  border: 1px solid rgba(245,130,32,0.5);
  border-radius: 100px;
  font-size: clamp(0.65rem, 1.2vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.2rem);
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  color: white;
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 3.6rem);
  line-height: 1.12;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.1rem);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--saffron) 0%, var(--saffron-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero p.lead {
  font-size: clamp(0.92rem, 1vw + 0.55rem, 1.1rem);
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-cta .btn { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
.hero-cta .btn-outline { color: white; border-color: rgba(255,255,255,0.5); }
.hero-cta .btn-outline:hover { background: white; color: var(--navy); border-color: white; }

/* ===== HERO IDENTITY CARD (typography-led, no illustration) ===== */
.hero-card {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: min(100%, 320px);
  max-height: min(62vh, 480px);
  margin: 0 auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(245,130,32,0.18) 0%, transparent 55%),
    linear-gradient(160deg, #102b50 0%, #0b1f3a 60%, #081628 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transform: none;
  display: flex;
  flex-direction: column;
}
@media (max-width: 880px) {
  .hero-card { max-height: min(50vh, 380px); max-width: 280px; }
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245,130,32,0.45);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}
/* Subtle ashoka chakra watermark */
.hero-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,130,32,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-card-stripe {
  display: flex;
  height: 6px;
  width: calc(100% - 56px);
  margin: 30px 28px 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.hero-card-stripe span { flex: 1; }
.hero-card-stripe .s1 { background: #FF9933; }
.hero-card-stripe .s2 { background: #FFFFFF; }
.hero-card-stripe .s3 { background: #138808; }

.hero-card-monogram {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(245,130,32,0.16);
  line-height: 1;
  z-index: 1;
  user-select: none;
}

.hero-card-lotus {
  position: absolute;
  top: 22%; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  z-index: 3;
  opacity: 0.95;
}

.hero-card-meta {
  position: absolute;
  top: 60px;
  left: 28px;
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-card-meta::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--saffron);
  vertical-align: middle;
  margin-right: 10px;
}

.hero-card-caption {
  margin-top: auto;
  padding: 28px;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.hero-card-caption .salutation {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-card-caption .name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 10px;
}
.hero-card-caption .designation {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-card-caption .designation strong { color: var(--saffron-light); font-weight: 700; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  text-align: center;
  position: relative;
  padding: 0.5rem 1rem;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--grey-300);
}
@media (max-width: 760px) {
  .stat:not(:last-child)::after { display: none; }
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--saffron-dark);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.84rem;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ===== CARDS / VALUES ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: white;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 54px; height: 54px;
  background: var(--saffron-soft);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--saffron-dark);
  font-size: 1.8rem;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--grey-700);
  font-size: 0.97rem;
  margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--saffron);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(50px);
}
.about-decor {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(245,130,32,0.04) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 70% 30%, rgba(245,130,32,0.22) 0%, transparent 55%),
    linear-gradient(160deg, #142e58 0%, #0b1f3a 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.about-decor::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px; right: 24px; bottom: 24px;
  border: 1px dashed rgba(245,130,32,0.4);
  border-radius: 4px;
  pointer-events: none;
}
.about-decor .ph-mark {
  position: relative;
  width: 70%;
  max-width: 280px;
}
.about-decor .ph-mark .lotus-svg {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: block;
  opacity: 0.85;
}
.about-decor .ph-mark .ph-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.about-decor .ph-mark .ph-sub {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-light);
  font-weight: 700;
}
.about-decor .ph-mark .ph-line {
  width: 40px; height: 2px;
  background: var(--saffron);
  margin: 1.2rem auto;
}
.about-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: white;
  padding: 1rem 1.4rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  z-index: 5;
}
.about-badge .l1 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-500);
  font-weight: 600;
}
.about-badge .l2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--grey-700); margin-bottom: 1.1rem; line-height: 1.75; }
.about-quote {
  border-left: 4px solid var(--saffron);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 1.25rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
}
.about-text { position: relative; z-index: 2; }

/* ===== VISION PILLARS ===== */
.vision-section {
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  position: relative;
}
.vision-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--grey-200);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  border: 1px solid var(--grey-200);
  transition: all .35s var(--ease);
  overflow: hidden;
}
.pillar::before {
  content: attr(data-num);
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--saffron);
  opacity: 0.08;
  line-height: 1;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}
.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.pillar p {
  color: var(--grey-700);
  font-size: 0.97rem;
  margin: 0;
}
.pillar .pillar-tag {
  display: inline-block;
  background: var(--saffron-soft);
  color: var(--saffron-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--saffron) 0%, var(--saffron-light) 100%);
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 2.5rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0.3rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--saffron);
  box-shadow: 0 0 0 5px rgba(245,130,32,0.15);
}
.tl-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--saffron-dark);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.tl-desc {
  color: var(--grey-700);
  font-size: 0.97rem;
  margin: 0;
}

/* ===== ENTERPRISE BAND ===== */
.enterprise-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.enterprise-band::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,130,32,0.20), transparent 65%);
  pointer-events: none;
}
.enterprise-band h2, .enterprise-band h3 { color: white; }
.enterprise-band .eyebrow { color: var(--saffron-light); }
.enterprise-band .eyebrow::before { background: var(--saffron-light); }
.enterprise-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .enterprise-grid { grid-template-columns: 1fr; gap: 2rem; } }
.enterprise-text p { color: rgba(255,255,255,0.78); }
.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.estat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  transition: all .3s ease;
}
.estat:hover {
  border-color: var(--saffron);
  background: rgba(245,130,32,0.08);
}
.estat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--saffron-light);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.estat .label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ===== SOCIAL FEEDS (3-column, per-feed nav) ===== */
.social-feeds-section {
  background: linear-gradient(180deg, var(--navy) 0%, #081628 100%);
  border-top: 3px solid var(--saffron);
}
.social-feeds-section .section-title { color: white; }
.social-feeds-section .section-sub { color: rgba(255,255,255,0.72); }
.social-feeds-section .eyebrow { color: var(--saffron-light); }
.social-feeds-section .eyebrow::before { background: var(--saffron-light); }

.social-feeds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .social-feeds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .social-feeds-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.social-feed-panel {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 36px rgba(0,0,0,0.28);
  min-width: 0;
}

.social-feed-card-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--grey-200);
  background: white;
}
.social-feed-card-header .feed-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.social-feed-card-header .feed-icon.fb { background: #1877F2; color: white; }
.social-feed-card-header .feed-icon.x { background: #0B1F3A; color: white; }
.social-feed-card-header .feed-icon.yt { background: #FF0000; color: white; font-size: 0.72rem; }
.social-feed-card-header .feed-icon.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}
.social-feed-card-header h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-nav {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}
.feed-nav-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  background: var(--cream);
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.feed-nav-btn:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
  transform: scale(1.06);
}
.feed-follow {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--saffron-dark);
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}
.feed-follow:hover { color: var(--saffron); }

.social-feed-viewport {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: #f7f7f7;
  -webkit-overflow-scrolling: touch;
}
.social-feed-viewport::-webkit-scrollbar { display: none; }

.social-feed-embed {
  min-height: 520px;
  background: #f7f7f7;
}
.social-feed-embed iframe {
  width: 100%;
  display: block;
  min-height: 520px;
  border: 0;
}
.feed-loading {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-500);
}
.feed-embed-fallback {
  padding: 1.5rem 1rem;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.feed-embed-fallback p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--grey-600);
  line-height: 1.5;
}
.feed-embed-fallback a {
  display: inline-flex;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.feed-embed-fallback a:hover { background: var(--saffron-dark); }
.social-feed-embed .fb-page,
.social-feed-embed .fb-page span,
.social-feed-embed .twitter-timeline {
  width: 100% !important;
  min-height: 520px;
}

/* ===== MINIMAL HOME QUICK LINKS ===== */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  transition: all .25s var(--ease);
  text-decoration: none;
  color: var(--navy);
}
.quick-link-card:hover {
  border-color: var(--saffron);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.quick-link-card .ql-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.quick-link-card strong {
  font-size: 0.92rem;
  font-weight: 700;
}
.quick-link-card span {
  font-size: 0.78rem;
  color: var(--grey-500);
  line-height: 1.4;
}
.hero-minimal .hero-grid { align-items: center; }
.hero-minimal p.lead { margin-bottom: 1.25rem; }

/* ===== EVENTS / NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.7rem;
}
.news-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}
.news-image {
  height: 200px;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.news-image::before,
.news-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.news-image::after {
  z-index: 1;
}
.news-image .news-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--saffron);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  z-index: 2;
}

/* Tone A — warm light wash + diagonal lines (home, events) */
.img-tone-a::before {
  background: linear-gradient(135deg, rgba(11,31,58,0.07) 0%, rgba(245,130,32,0.12) 100%);
  z-index: 1;
}
.img-tone-a::after {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.045) 0 1px,
    transparent 1px 14px
  );
  z-index: 1;
}

/* Tone B — soft bottom depth + horizontal lines (publications) */
.img-tone-b::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(11,31,58,0.18) 100%);
  z-index: 1;
}
.img-tone-b::after {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.035) 0 1px,
    transparent 1px 18px
  );
  z-index: 1;
}

/* Tone C — minimal saffron edge + crosshatch (digital media) */
.img-tone-c::before {
  background: linear-gradient(
    120deg,
    rgba(245,130,32,0.05) 0%,
    transparent 42%,
    rgba(11,31,58,0.1) 100%
  );
  z-index: 1;
}
.img-tone-c::after {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 20px);
  z-index: 1;
}
.news-body {
  padding: 1.6rem 1.7rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-size: 0.82rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.news-body h3 {
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.news-body p {
  color: var(--grey-700);
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 1rem;
}

/* ===== QUOTES CAROUSEL ===== */
.quotes-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.quotes-section::before {
  content: '"';
  position: absolute;
  top: -3rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 22rem;
  color: var(--saffron);
  opacity: 0.05;
  font-weight: 900;
  line-height: 1;
}
.quote-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.quote-card {
  background: white;
  border-radius: 8px;
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--saffron);
  transition: all .3s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.quote-card .qmark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--saffron);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1.2rem;
}
.quote-card cite {
  color: var(--saffron-dark);
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.wide { aspect-ratio: 16/10; grid-column: span 2; }
.gallery-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.05); }

/* Gallery tone variants — lighter caption fade + subtle lines */
.gallery-grid.tone-a .gallery-item::after,
.gallery-grid.tone-b .gallery-item::after,
.gallery-grid.tone-c .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.gallery-grid.tone-a .gallery-item::after {
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 16px
  );
}
.gallery-grid.tone-b .gallery-item::after {
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 18px
  );
}
.gallery-grid.tone-c .gallery-item::after {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 20px);
}
.gallery-grid.tone-a .gallery-overlay {
  background: linear-gradient(180deg, transparent 58%, rgba(11,31,58,0.72) 100%);
}
.gallery-grid.tone-b .gallery-overlay {
  background: linear-gradient(180deg, transparent 62%, rgba(11,31,58,0.68) 100%);
}
.gallery-grid.tone-c .gallery-overlay {
  background: linear-gradient(180deg, rgba(11,31,58,0.06) 0%, transparent 35%, rgba(11,31,58,0.7) 100%);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,31,58,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  z-index: 2;
}
.gallery-item .ph-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(11,31,58,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,130,32,0.4);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 3;
  font-weight: 700;
}
@media (max-width: 600px) { .gallery-item.wide { grid-column: span 1; } }

/* ===== CTA BAND ===== */
.cta-band {
  background:
    linear-gradient(120deg, rgba(245,130,32,0.95) 0%, rgba(227,106,10,0.95) 100%),
    var(--saffron);
  color: white;
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(40px);
}
.cta-band::before { width: 380px; height: 380px; top: -180px; left: -80px; }
.cta-band::after { width: 320px; height: 320px; bottom: -160px; right: -60px; }
.cta-band h2 { color: white; margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative; z-index: 2;
}
.cta-band .btn {
  position: relative; z-index: 2;
}
.cta-band .btn-primary {
  background: white;
  color: var(--saffron-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.cta-band .btn-primary:hover { background: var(--navy); color: white; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  transition: color .2s ease;
}
.footer-col ul a:hover { color: var(--saffron-light); }
.footer-brand .brand-text strong { color: white; }
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1rem;
  max-width: 320px;
}
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .25s ease;
}
.social-links a:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
}
.social-links svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== PAGE HEADERS ===== */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 70%, var(--saffron-dark) 100%);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 60px);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,130,32,0.3), transparent 65%);
  filter: blur(30px);
}
.page-hero h1 {
  color: white;
  margin-bottom: 0.8rem;
  position: relative; z-index: 2;
}
.page-hero .breadcrumb {
  position: relative; z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--saffron-light); }
.page-hero p.intro {
  position: relative; z-index: 2;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 700px;
}

/* ===== BIOGRAPHY PAGE ===== */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.bio-sidebar {
  position: sticky;
  top: 100px;
  background: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--grey-200);
}
@media (max-width: 860px) {
  .bio-sidebar { position: static; }
}
.bio-portrait {
  aspect-ratio: 4/5;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(245,130,32,0.05) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, #142e58 0%, #0b1f3a 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
}
.bio-portrait::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: 18px; bottom: 18px;
  border: 1px dashed rgba(245,130,32,0.45);
  border-radius: 4px;
  pointer-events: none;
}
.bio-portrait .ph-mark {
  position: relative;
}
.bio-portrait .ph-mark svg {
  width: 48px; height: 48px;
  display: block;
  margin: 0 auto 0.8rem;
  opacity: 0.85;
}
.bio-portrait .ph-mark .ph-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.bio-portrait .ph-mark .ph-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-light);
  font-weight: 700;
}
.bio-fact {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.bio-fact:last-child { border-bottom: 0; }
.bio-fact .l {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.bio-fact .v {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.bio-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}
.bio-content h2:first-child { margin-top: 0; }
.bio-content p {
  color: var(--grey-700);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.bio-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.bio-content ul li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: var(--grey-700);
}
.bio-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 10px; height: 10px;
  background: var(--saffron);
  border-radius: 50%;
}

/* ===== PROFILE CARDS for boards ===== */
.role-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.role-card {
  padding: 1.4rem;
  background: white;
  border-left: 4px solid var(--saffron);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.role-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.role-card span { color: var(--grey-500); font-size: 0.88rem; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--saffron);
  margin-bottom: 1rem;
}
.contact-info-card h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.contact-info-card p { color: var(--grey-700); margin: 0; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  font: inherit;
  background: white;
  transition: border-color .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(245,130,32,0.15);
}

/* ===== ANIMATION REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-saffron { color: var(--saffron-dark); }
.text-navy { color: var(--navy); }
.section-head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.section-head .section-sub { margin-left: auto; margin-right: auto; }
.divider-flag {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF9933 0%, white 50%, #138808 100%);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ============================================
   Form additions
   ============================================ */
.form-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(11,31,58,0.06);
}
@media (max-width: 640px) { .form-wrap { padding: 1.5rem; } }
.form-wrap .req { color: var(--saffron); font-weight: 700; }
.form-note {
  background: var(--cream);
  border-left: 3px solid var(--saffron);
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--grey-600);
  line-height: 1.6;
}
.form-note em { color: var(--navy); font-style: normal; font-weight: 700; }

/* ============================================
   BILINGUAL SUPPORT (EN/HI)
   ============================================ */

/* Language switcher in header */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 3px;
  margin-left: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  flex-shrink: 0;
}
.lang-switch button {
  background: transparent;
  border: 0;
  padding: 4px 10px;
  cursor: pointer;
  color: var(--grey-600);
  border-radius: 100px;
  transition: all .2s ease;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lang-switch button.active {
  background: var(--saffron);
  color: white;
  box-shadow: 0 2px 4px rgba(245,130,32,0.3);
}
.lang-switch button:hover:not(.active) {
  color: var(--navy);
}
@media (max-width: 700px) {
  .lang-switch {
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 200;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 1px solid var(--grey-200);
    margin: 0;
  }
}

/* When in Hindi mode, swap typography for Devanagari */
body.lang-hi {
  font-family: 'Noto Sans Devanagari', 'Source Sans 3', system-ui, sans-serif;
  font-feature-settings: "kern", "liga";
}
body.lang-hi h1,
body.lang-hi h2,
body.lang-hi h3,
body.lang-hi h4,
body.lang-hi h5,
body.lang-hi .name,
body.lang-hi .section-title,
body.lang-hi .ph-title {
  font-family: 'Tiro Devanagari Hindi', 'Noto Serif Devanagari', 'Noto Sans Devanagari', Georgia, serif;
  letter-spacing: 0;
  line-height: 1.35;
}
body.lang-hi p,
body.lang-hi li,
body.lang-hi .lead,
body.lang-hi blockquote,
body.lang-hi .news-body p,
body.lang-hi .pillar p,
body.lang-hi .card p,
body.lang-hi .tl-desc {
  line-height: 1.85;
  font-weight: 400;
}
body.lang-hi .eyebrow,
body.lang-hi .nav a,
body.lang-hi .btn,
body.lang-hi .btn-ghost,
body.lang-hi .news-date,
body.lang-hi .news-tag,
body.lang-hi .pillar-tag,
body.lang-hi .salutation,
body.lang-hi .designation,
body.lang-hi .hero-tag,
body.lang-hi .footer-col h4 {
  letter-spacing: 0.04em;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
}
body.lang-hi .lead { font-size: 1.15rem; }
body.lang-hi h1 { letter-spacing: 0; }
body.lang-hi .hero-card-monogram { font-family: Georgia, serif; }

/* Keep the Hindi nav compact so 11 Devanagari labels don't overflow */
body.lang-hi .nav a {
  font-size: 0.82rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  letter-spacing: 0;
}
@media (min-width: 1201px) and (max-width: 1400px) {
  body.lang-hi .nav a { font-size: 0.78rem; padding-left: 0.42rem; padding-right: 0.42rem; }
}

/* Hide the opposite-language text by default */
[data-en], [data-hi] { transition: opacity .15s ease; }

/* ===== IMAGE INDEX PHOTO SLOTS ===== */
.hero-card--photo {
  background-size: cover;
  background-position: center top;
}
.hero-card--photo::before {
  border-color: rgba(245,130,32,0.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-card--photo::after {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px),
    linear-gradient(to top, rgba(11,31,58,0.55) 0%, transparent 45%);
  top: 0; right: 0; left: 0; bottom: 0;
  width: auto; height: auto;
  border-radius: 0;
}
.hero-card--photo .hero-card-monogram,
.hero-card--photo .hero-card-lotus { opacity: 0; pointer-events: none; }

.about-decor--photo,
.bio-portrait--photo {
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.about-decor--photo::before,
.bio-portrait--photo::before {
  border-color: rgba(245,130,32,0.28);
  opacity: 0.85;
}
.about-decor--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 16px),
    linear-gradient(160deg, rgba(11,31,58,0.08) 0%, rgba(245,130,32,0.1) 100%);
  pointer-events: none;
}
.bio-portrait--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, transparent 50%, rgba(11,31,58,0.2) 100%);
  pointer-events: none;
}
.about-decor--photo.img-tone-vision::after {
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 20px),
    linear-gradient(120deg, rgba(245,130,32,0.06) 0%, transparent 50%, rgba(11,31,58,0.12) 100%);
}
.about-decor--photo .ph-mark,
.bio-portrait--photo .ph-mark { opacity: 0; pointer-events: none; }
.brand-logo--photo {
  background-size: cover;
  background-position: center;
  color: transparent;
  font-size: 0;
  overflow: hidden;
}
