:root {
  --bg: #f6f5f1;
  --ink: #24201d;
  --muted: #7e766d;
  --line: #ddd8d1;
  --accent: #d95a1b;
  --panel: #f4f2ee;
  --max: 980px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

html:lang(hi),
html:lang(sa),
html:lang(mr) {
  --font-body: "Noto Sans Devanagari", "Manrope", sans-serif;
  --font-display: "Noto Serif Devanagari", "Cormorant Garamond", serif;
}

html:lang(gu) {
  --font-body: "Noto Sans Gujarati", "Manrope", sans-serif;
  --font-display: "Noto Serif Gujarati", "Cormorant Garamond", serif;
}

html:lang(bn) {
  --font-body: "Noto Sans Bengali", "Manrope", sans-serif;
  --font-display: "Noto Serif Bengali", "Cormorant Garamond", serif;
}

html:lang(ta) {
  --font-body: "Noto Sans Tamil", "Manrope", sans-serif;
  --font-display: "Noto Serif Tamil", "Cormorant Garamond", serif;
}

html:lang(te) {
  --font-body: "Noto Sans Telugu", "Manrope", sans-serif;
  --font-display: "Noto Serif Telugu", "Cormorant Garamond", serif;
}

html:lang(pa) {
  --font-body: "Noto Sans Gurmukhi", "Manrope", sans-serif;
  --font-display: "Noto Serif Gurmukhi", "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  max-width: 60vw;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.section-gap {
  margin-top: 72px;
}

.kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 96px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.01em;
  line-height: 0.82;
}

.brand-name small {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

html:lang(gu) .brand-name,
html:lang(bn) .brand-name,
html:lang(ta) .brand-name,
html:lang(te) .brand-name,
html:lang(pa) .brand-name {
  font-size: 28px;
  line-height: 0.96;
}

html:lang(gu) .brand-name small,
html:lang(bn) .brand-name small,
html:lang(ta) .brand-name small,
html:lang(te) .brand-name small,
html:lang(pa) .brand-name small {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.contact-link {
  font-size: 27px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
}

.language-wrap {
  position: relative;
}

.language-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.lang-icon {
  color: var(--accent);
  font-size: 15px;
}

.lang-label {
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 11px;
  color: #4e4740;
}

.lang-current {
  font-size: 15px;
}

.caret {
  font-size: 12px;
  color: var(--muted);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 290px;
  border: 1px solid var(--line);
  background: var(--bg);
  z-index: 30;
}

.menu-intro {
  border-bottom: 1px solid var(--line);
  padding: 13px 18px;
}

.menu-intro p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #5a534d;
}

.lang-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(221, 216, 209, 0.55);
  background: transparent;
  text-align: left;
  display: block;
  padding: 10px 18px 10px;
  cursor: pointer;
}

.lang-item:last-child {
  border-bottom: 0;
}

.lang-item:hover,
.lang-item.active {
  background: #efece6;
}

.native {
  display: block;
  font-size: 29px;
  line-height: 1;
  font-family: var(--font-display);
}

.roman {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7f776e;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 44px;
  margin-top: 86px;
}

.line-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.line-left::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-copy h1 {
  margin: 24px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 74px);
  font-weight: 500;
  line-height: 0.93;
}

html:lang(gu) .hero-copy h1 {
  font-size: clamp(48px, 5.8vw, 64px);
  line-height: 1.02;
}

html:lang(bn) .hero-copy h1 {
  font-size: clamp(47px, 5.7vw, 62px);
  line-height: 1.04;
}

html:lang(ta) .hero-copy h1 {
  font-size: clamp(45px, 5.5vw, 60px);
  line-height: 1.08;
}

html:lang(te) .hero-copy h1 {
  font-size: clamp(46px, 5.6vw, 61px);
  line-height: 1.08;
}

html:lang(pa) .hero-copy h1 {
  font-size: clamp(47px, 5.65vw, 62px);
  line-height: 1.05;
}

.hero-copy h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.lead {
  margin: 0;
  max-width: 560px;
  font-size: clamp(20px, 2vw, 39px);
  line-height: 1.35;
  color: #3f3832;
}

.script-line {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(34px, 2.2vw, 40px);
  color: #403933;
}

.hero-visual {
  justify-self: end;
  max-width: 360px;
}

.hero-visual img {
  width: 100%;
  border: 1px solid #e5dfd7;
  border-radius: 16px;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.visual-meta {
  margin: 14px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7c746b;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.visual-meta span {
  position: relative;
}

.launch {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 0;
}

.launch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  gap: 24px;
}

.launch-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 3.6vw, 52px);
  font-weight: 500;
}

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

.count-cell {
  min-height: 170px;
  border-right: 1px solid var(--line);
  display: grid;
  place-content: center;
  gap: 7px;
}

.count-cell:last-child {
  border-right: 0;
}

.count-cell strong {
  font-family: var(--font-display);
  font-size: clamp(62px, 4.8vw, 82px);
  font-weight: 500;
  line-height: 0.9;
}

.count-cell span {
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #6f675f;
}

.purpose {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.purpose-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}

.purpose-left h2 {
  margin: 16px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(58px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.92;
}

.purpose-left img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.purpose-intro {
  margin: 0 0 26px;
  font-size: clamp(21px, 1.8vw, 33px);
  line-height: 1.5;
  color: #3f3832;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillars article {
  background: var(--panel);
  border-left: 3px solid var(--accent);
  padding: 28px 24px 28px 26px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.pillars article:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.pillars h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.95;
  font-weight: 500;
}

.pillars p {
  margin: 0;
  font-size: clamp(19px, 1.35vw, 29px);
  line-height: 1.45;
  color: #403934;
}

.language-panel {
  position: relative;
  border: 1px solid var(--line);
  padding: 34px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.language-panel h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 2.9vw, 54px);
  font-weight: 500;
}

.language-panel .mirror {
  right: 48px;
  top: 100%;
}

.site-foot {
  margin-top: 98px;
  border-top: 1px solid var(--line);
  padding: 34px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.foot-grid section p {
  margin: 10px 0;
  font-size: clamp(24px, 1.3vw, 29px);
  line-height: 1.55;
}

.foot-grid a {
  color: inherit;
  text-decoration: none;
}

.social-row {
  display: flex;
  gap: 12px;
  margin: 18px 0 20px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #cfc9c1;
  display: grid;
  place-items: center;
  color: #7a726a;
  font-size: 16px;
}

.current-site {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 12px;
  color: #6d655c;
}

.foot-base {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.foot-base p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #6d655c;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  :root {
    --max: 92vw;
  }

  .hero,
  .purpose-top {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .launch-head,
  .language-panel,
  .foot-base,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .count-grid {
    grid-template-columns: 1fr 1fr;
  }

  .count-cell {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .count-cell:nth-child(2n) {
    border-right: 0;
  }

  .count-cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .language-menu {
    left: 0;
    right: auto;
    width: min(340px, 86vw);
  }

  .brand img {
    height: 84px;
    width: auto;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section-gap {
    margin-top: 56px;
  }

  .count-grid {
    grid-template-columns: 1fr;
  }

  .count-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 138px;
  }

  .count-cell:last-child {
    border-bottom: 0;
  }

  .language-panel {
    padding: 26px 16px;
  }

  .language-panel .mirror {
    right: auto;
    left: 0;
  }

  .brand img {
    height: 72px;
    width: auto;
  }
}
