/* ===================================================
   PADMASHRI GROUP — Tata-style classical corporate
   Respects natural image aspect ratios
   =================================================== */

:root {
  --bg: #FFFFFF;
  --bg-cream: #FAF6ED;
  --bg-warm: #F5EFDF;
  --ink: #111111;
  --ink-2: #2E2A22;
  --ink-dim: #6E685E;
  --line: #E4DFD3;
  --line-2: #CDC6B4;

  --saffron: #E8A33D;
  --saffron-deep: #C17812;
  --saffron-soft: #FBECC9;

  --font-display: "Libre Caslon Text", "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --container-wide: 1440px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 40px -14px rgba(0,0,0,0.18);
  --shadow-lg: 0 28px 70px -28px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--saffron); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.12;
}
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  position: relative;
  padding-left: 40px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--saffron);
}
.eyebrow.light { color: var(--saffron); }
.eyebrow.light::before { background: var(--saffron); }
.eyebrow.no-bar { padding-left: 0; }
.eyebrow.no-bar::before { display: none; }

.container { max-width: var(--container); padding: 0 32px; margin: 0 auto; }
.container-wide { max-width: var(--container-wide); padding: 0 32px; margin: 0 auto; }
section { padding: clamp(80px, 9vw, 130px) 0; }

/* ========== NAVIGATION (Tata-style: subtle, top) ========== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: inherit; margin-left: 20px; transition: color 0.2s; }
.topbar a:hover { color: var(--saffron); }
.topbar .locs { color: rgba(255,255,255,0.55); }
@media (max-width: 700px) { .topbar .locs { display: none; } }

.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px -10px rgba(0,0,0,0.1); }
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-brand .mark {
  height: 96px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
/* Hide the "Padmashri Group" text beside logo — the logo itself contains the name */
.nav-brand > span:not(.mark) { display: none; }
.footer .nav-brand > span:not(.mark) { display: none; }
.footer .nav-brand .mark {
  /* Keep logo visible on dark background */
  background: #FFFFFF;
  padding: 8px 14px;
  border-radius: 4px;
  height: 80px;
}
@media (max-width: 1100px) {
  .nav-brand .mark { height: 80px; max-width: 260px; }
}
@media (max-width: 600px) {
  .nav-brand .mark { height: 60px; max-width: 200px; }
  .footer .nav-brand .mark { height: 60px; }
}
/* Give the nav more breathing room to accommodate bigger logo */
.nav-inner { padding-top: 14px; padding-bottom: 14px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--saffron-deep); }
.nav-links a.active { color: var(--saffron-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 2px;
  height: 2px;
  background: var(--saffron);
}
.nav-cta {
  padding: 12px 24px;
  background: var(--ink);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--saffron-deep); }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line-2);
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute; left: 10px; right: 10px;
  height: 2px; background: var(--ink);
  transition: 0.3s;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 23px; }
.nav-burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 120px 32px 40px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

/* ========== HERO (Tata-style: full-width image + overlay) ========== */
.hero {
  position: relative;
  height: clamp(540px, 80vh, 760px);
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.62;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-content .container {
  color: #FFFFFF;
  max-width: var(--container);
}
.hero-content .eyebrow {
  color: var(--saffron);
  margin-bottom: 28px;
}
.hero-content .eyebrow::before { background: var(--saffron); }
.hero h1 {
  font-family: var(--font-display);
  color: #FFFFFF;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--saffron); }
.hero-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 55ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-meta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn .arrow { width: 14px; height: 14px; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--saffron); color: var(--ink); }
.btn-primary:hover { background: #FFFFFF; color: var(--ink); }
.btn-dark { background: var(--ink); color: #FFFFFF; }
.btn-dark:hover { background: var(--saffron-deep); }
.btn-ghost-dark { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.4); }
.btn-ghost-dark:hover { background: #FFFFFF; color: var(--ink); border-color: #FFFFFF; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: #FFFFFF; border-color: var(--ink); }

/* ========== SECTION HEADINGS ========== */
.section-head {
  margin-bottom: 64px;
  max-width: 780px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head h2 em { font-style: italic; color: var(--saffron-deep); }
.section-head p {
  margin-top: 18px;
  color: var(--ink-dim);
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.65;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { padding-left: 0; }
.section-head.center .eyebrow::before { display: none; }

/* ========== INTRO (About snippet with portrait photo) ========== */
.intro {
  background: var(--bg-cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: center;
}
.intro .photo {
  /* Match natural 3:4 aspect of our portrait photos */
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.intro .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.intro .photo .badge-tl {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--saffron);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  z-index: 2;
}
.intro h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: 18px 0 26px;
}
.intro h2 em { font-style: italic; color: var(--saffron-deep); }
.intro p {
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.75;
}
.intro p + p { margin-top: 14px; }
.intro .signoff {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
}
.intro .signoff small {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
  font-style: normal;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== STATS STRIP (Tata-style: big numbers inline) ========== */
.stats {
  background: var(--ink);
  color: #FFFFFF;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  padding: 0 24px;
  border-left: 2px solid var(--saffron);
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.stat-big sup { font-size: 0.55em; color: var(--saffron); }
.stat-lab {
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}

/* ========== BUSINESSES (Tata-style: big photo cards) ========== */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.biz-card {
  display: block;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-decoration: none;
  /* Use square-ish aspect so both portrait and landscape source photos look OK */
  aspect-ratio: 4/5;
  border-radius: 2px;
  background: var(--ink);
}
.biz-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.biz-card:hover img { transform: scale(1.06); }
.biz-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.88) 100%);
  pointer-events: none;
}
.biz-card .biz-inner {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.biz-card .biz-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--saffron);
  font-weight: 500;
}
.biz-card .biz-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #FFFFFF;
}
.biz-card .biz-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 10px 0 18px;
}
.biz-card .biz-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
}
.biz-card .biz-arrow svg { transition: transform 0.3s; }
.biz-card:hover .biz-arrow svg { transform: translateX(4px); }
@media (max-width: 1000px) {
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .biz-grid { grid-template-columns: 1fr; }
  .biz-card { aspect-ratio: 4/3; }
}

/* ========== PARTNERS / BRANDS GRID ========== */
.partners {
  background: var(--bg-cream);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--bg);
  border: 1px solid var(--line);
}
.partner-cell {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}
.partner-cell:last-child { border-right: none; }
.partner-cell:hover { background: var(--saffron-soft); }
.partner-cell img {
  max-width: 85%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.9;
  transition: all 0.3s;
}
.partner-cell:hover img { filter: grayscale(0%); opacity: 1; }
.partner-cell .txt-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-dim);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.partner-cell:hover .txt-brand { color: var(--saffron-deep); }
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-cell:nth-child(3n) { border-right: none; }
  .partner-cell:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 500px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .partner-cell:nth-child(2n) { border-right: none; }
}
.partners-line {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}

/* ========== IMAGE BAND (Tata-style full-width) ========== */
.image-band {
  position: relative;
  height: clamp(360px, 60vh, 560px);
  overflow: hidden;
}
.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.image-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.2) 100%);
}
.image-band-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  color: #FFFFFF;
}
.image-band h2 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-top: 24px;
}
.image-band h2 em { font-style: italic; color: var(--saffron); }
.image-band p {
  max-width: 50ch;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  font-size: 1.05rem;
}
.image-band .eyebrow { color: var(--saffron); }
.image-band .eyebrow::before { background: var(--saffron); }

/* ========== LEADERSHIP TEASER ========== */
.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.leader-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.leader-card.no-photo { display: block; padding: 40px; }
.leader-card.no-photo .role { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron-deep); }
.leader-card.no-photo .name { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2rem); margin-top: 10px; line-height: 1.1; }
.leader-card.no-photo .bio { color: var(--ink-2); font-size: 1rem; line-height: 1.7; margin-top: 16px; }
.leader-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); }
.leader-card .photo {
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  overflow: hidden;
}
.leader-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-card .role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-deep);
}
.leader-card .name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: 8px;
}
.leader-card .bio { color: var(--ink-dim); font-size: 14px; line-height: 1.65; margin-top: 14px; }
@media (max-width: 800px) {
  .leaders { grid-template-columns: 1fr; gap: 20px; }
  .leader-card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .leader-card .photo { aspect-ratio: 16/10; max-height: 280px; }
}

/* ========== VALUES GRID ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-item {
  padding: 36px 28px;
  background: var(--bg);
  transition: background 0.3s;
}
.value-item:hover { background: var(--bg-cream); }
.value-item .v-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--saffron-deep);
  font-size: 14px;
  margin-bottom: 12px;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.value-item p {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.55;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--bg-cream);
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  max-width: 22ch;
  margin: 20px auto 20px;
  line-height: 1.15;
  font-weight: 400;
}
.cta-band h2 em { font-style: italic; color: var(--saffron-deep); }
.cta-band p {
  color: var(--ink-dim);
  max-width: 50ch;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}
.cta-band .ctas {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.footer a { color: rgba(255,255,255,0.88); }
.footer a:hover { color: var(--saffron); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .nav-brand { color: #FFFFFF; }
.footer .nav-brand .mark { background: var(--saffron); }
.footer .footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  max-width: 40ch;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.footer h4 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14.5px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== Manifesto band (JSW "Living Better Doing Better" style) ========== */
.manifesto {
  background: var(--ink);
  color: #FFFFFF;
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,163,61,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto > * { position: relative; }
.manifesto .eyebrow { color: var(--saffron); margin-bottom: 24px; padding-left: 0; display: inline-flex; }
.manifesto .eyebrow::before { display: none; }
.manifesto h2 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 0 auto 26px;
}
.manifesto h2 em { font-style: italic; color: var(--saffron); }
.manifesto p { color: rgba(255,255,255,0.7); max-width: 60ch; margin: 0 auto; font-size: 1.15rem; line-height: 1.65; }

/* ========== Lifestyle image strip (Asian Paints inspired) ========== */
.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: clamp(360px, 50vh, 520px);
}
.lifestyle-strip .lf-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.lifestyle-strip .lf-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.lifestyle-strip .lf-tile:hover img { transform: scale(1.06); }
.lifestyle-strip .lf-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  transition: opacity 0.4s var(--ease);
}
.lifestyle-strip .lf-tile:hover::after { background: linear-gradient(180deg, rgba(184,119,15,0.2) 0%, rgba(0,0,0,0.6) 100%); }
.lifestyle-strip .lf-tile .label {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 1;
  color: #FFFFFF;
}
.lifestyle-strip .lf-tile .label .eyb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}
.lifestyle-strip .lf-tile .label .ttl {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
}
.lifestyle-strip .lf-tile .label .ttl em { font-style: italic; color: var(--saffron); }
@media (max-width: 800px) {
  .lifestyle-strip { grid-template-columns: 1fr; height: auto; }
  .lifestyle-strip .lf-tile { height: 280px; }
}

/* ========== Big stats v2 (JSW pattern) ========== */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
}
.big-stat {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--bg);
  transition: background 0.3s var(--ease);
}
.big-stat:hover { background: var(--bg-cream); }
.big-stat:last-child { border-right: none; }
.big-stat .b-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--saffron-deep);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.big-stat .b-num sup { font-size: 0.5em; color: var(--saffron); margin-left: 4px; }
.big-stat .b-lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.big-stat .b-desc {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .big-stats { grid-template-columns: repeat(2, 1fr); }
  .big-stat { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 24px; }
  .big-stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ========== Nav dropdown (Wellness) ========== */
.nav-links li.has-drop { position: relative; }
.nav-links li.has-drop > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-links li.has-drop > a::after { content: "▾"; font-size: 10px; opacity: 0.6; transition: transform 0.2s; }
.nav-links li.has-drop:hover > a::after { transform: rotate(180deg); }
.nav-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
  list-style: none;
  z-index: 100;
}
.nav-links li.has-drop:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop li { margin: 0; }
.nav-drop a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-drop a:hover { background: var(--bg-cream); color: var(--saffron-deep); }
.nav-drop a.active { color: var(--saffron-deep); background: var(--bg-cream); }
@media (max-width: 1024px) { .nav-links li.has-drop { display: none; } }

/* ========== Benefits grid (Buildistan pattern) ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  padding: 40px 32px;
  background: var(--bg);
  transition: all 0.3s var(--ease);
  position: relative;
}
.benefit:hover { background: var(--bg-cream); }
.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--saffron);
  transition: width 0.35s var(--ease);
}
.benefit:hover::before { width: 100%; }
.benefit .b-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--saffron);
  display: grid; place-items: center;
  color: var(--saffron-deep);
  margin-bottom: 22px;
}
.benefit h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.benefit p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ========== Sectors we serve (chip row) ========== */
.sectors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sectors-list li {
  list-style: none;
  padding: 12px 22px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s var(--ease);
  cursor: default;
}
.sectors-list li:hover { background: var(--saffron); border-color: var(--saffron); color: var(--ink); transform: translateY(-2px); }

/* ========== FAQ ========== */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.faq-item summary:hover { color: var(--saffron-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--saffron-deep);
  font-size: 18px;
  font-weight: 300;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary .plus {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-item .answer {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 65ch;
}

/* ========== Journey timeline (JSW / UltraTech pattern) ========== */
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 40px;
}
.journey::before {
  content: "";
  position: absolute;
  top: 34px; left: 5%; right: 5%;
  height: 2px;
  background: var(--line-2);
  z-index: 0;
}
.journey .milestone {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.journey .milestone .dot {
  width: 20px; height: 20px;
  background: var(--saffron);
  border: 4px solid var(--bg);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 2px var(--saffron);
}
.journey .milestone .year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--saffron-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.journey .milestone h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 6px;
}
.journey .milestone p { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }
@media (max-width: 900px) {
  .journey { grid-template-columns: 1fr; gap: 28px; }
  .journey::before { display: none; }
  .journey .milestone { text-align: left; padding: 24px 0 0; border-top: 2px solid var(--line); }
  .journey .milestone .dot { margin: 0 0 16px; }
}

/* ========== Office grid (contact pattern) ========== */
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.office {
  padding: 32px 28px;
  background: var(--bg);
  transition: background 0.3s var(--ease);
}
.office:hover { background: var(--bg-cream); }
.office .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 12px;
}
.office h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.office p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.6;
}
.office .hq-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--saffron);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media (max-width: 900px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .office-grid { grid-template-columns: 1fr; } }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== PAGE HEAD (for inner pages) ========== */
.page-head {
  padding: 80px 0;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  max-width: 20ch;
  margin: 18px 0 16px;
}
.page-head h1 em { font-style: italic; color: var(--saffron-deep); }
.page-head p { color: var(--ink-dim); max-width: 55ch; font-size: 1.1rem; }

/* ==========================================================================
   ABOUT PAGE — Community & wellness split
   ========================================================================== */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .community-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   BUSINESSES — 5-column operating method variant
   ========================================================================== */
.benefits-grid.five-col { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .benefits-grid.five-col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .benefits-grid.five-col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits-grid.five-col { grid-template-columns: 1fr; } }

/* ==========================================================================
   COMPREHENSIVE MOBILE FIXES (applied last, override earlier rules)
   Covers: overflow, container padding, hero heights, nav, typography,
   grids that still have too many columns on small phones.
   ========================================================================== */

/* Global safety — prevent any horizontal overflow */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg, iframe { max-width: 100%; height: auto; }

/* Tablet & below */
@media (max-width: 900px) {
  section { padding: clamp(56px, 9vw, 90px) 0; }
  .container, .container-wide { padding: 0 20px; }

  .topbar { font-size: 11px; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar-inner .locs { font-size: 10.5px; }

  .nav-inner { padding: 0 20px; height: 70px; }
  .nav-brand .mark { height: 64px !important; max-width: 200px !important; }

  .hero { height: clamp(460px, 78vh, 620px); }
  .hero-content h1 { font-size: clamp(2rem, 7vw, 2.8rem) !important; }
  .hero-lead { font-size: 1rem !important; }

  .section-head h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }

  .big-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .big-stats .num { font-size: clamp(2.4rem, 9vw, 3.4rem) !important; }

  .stats-grid { gap: 24px 16px; }
  .stats-grid .stat-big { font-size: clamp(2.2rem, 9vw, 3rem) !important; }

  .journey { grid-template-columns: 1fr !important; }
  .journey .step { padding: 24px 0; }

  .insp-grid, .themes, .values-grid, .benefits-grid, .biz-grid,
  .office-grid, .partners-grid { grid-template-columns: 1fr !important; }

  .connect-grid, .story-grid, .community-grid, .intro-grid,
  .contact-grid, .route-picker { grid-template-columns: 1fr !important; gap: 32px !important; }

  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }

  .pull-quote { padding: 40px 24px !important; font-size: 1.3rem !important; }

  .leader-card { padding: 28px !important; grid-template-columns: 1fr !important; }
  .leader-card .portrait { max-width: 240px; margin: 0 auto; }

  /* Image bands — reduce height on mobile */
  .image-band, .landscape-band { height: clamp(360px, 60vh, 460px) !important; }
  .image-band h2, .landscape-band h2 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }

  /* Intro logo header — shrink further */
  .intro > div:first-child { padding: 20px 20px 12px !important; }
  .intro > div:first-child img { max-width: min(220px, 55vw) !important; }

  /* Gurudev hero */
  .guru-hero { height: clamp(460px, 80vh, 580px) !important; }
  .guru-hero h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }

  /* Business rows — column stack */
  .biz-block, .biz-block > * { grid-template-columns: 1fr !important; }

  /* Any inline 2-col grids that might be in HTML */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1.25fr"],
  [style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* Small phones */
@media (max-width: 560px) {
  .container, .container-wide { padding: 0 16px; }
  .nav-inner { height: 64px; }
  .nav-brand .mark { height: 54px !important; max-width: 170px !important; }
  .nav-cta { display: none; }

  .big-stats, .stats-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .big-stats .stat, .stats-grid .stat-item { padding: 20px 0; }
  .big-stats .num { font-size: clamp(2.2rem, 11vw, 3rem) !important; }

  .footer-grid { grid-template-columns: 1fr !important; }

  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .hero-content h1 { font-size: clamp(1.75rem, 9vw, 2.6rem) !important; }
  .page-head h1 { font-size: clamp(1.8rem, 8vw, 2.6rem) !important; }
  .section-head h2 { font-size: clamp(1.5rem, 6.5vw, 2rem) !important; }

  .btn { padding: 12px 20px; font-size: 11.5px; }
  .btn .arrow { width: 14px; height: 14px; }

  .eyebrow { font-size: 10px; letter-spacing: 0.2em; padding-left: 32px; }
  .eyebrow::before { width: 20px; }

  /* Tighter vertical rhythm on small phones */
  section { padding: 50px 0; }

  /* Stat columns on very small screens show the number + label inline */
  .big-stats .stat, .big-stats .stat-item { text-align: left; padding: 16px 0; border-bottom: 1px solid var(--line); }

  /* Topbar — hide secondary info on very small screens */
  .topbar .locs { display: none; }
}

/* Ensure mobile menu opens above all content */
.mobile-menu { z-index: 999 !important; }
.nav { z-index: 200; }

/* Accessibility — readable line-length on mobile */
@media (max-width: 700px) {
  p { font-size: 0.98rem; line-height: 1.65; }
  .hero-lead { line-height: 1.55; }
}
