:root {
  --orange: #e45e00;
  --orange-dark: #a93300;
  --orange-soft: #f4862f;
  --blue: #087da8;
  --blue-dark: #045d80;
  --green: #164f3b;
  --green-dark: #0d3528;
  --ink: #171613;
  --ink-soft: #2b2924;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --white: #fff;
  --line: rgba(23, 22, 19, .16);
  --shadow: 0 22px 60px rgba(31, 23, 14, .16);
  --page: 1200px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: .075em;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: min(calc(100% - 64px), var(--page));
  margin-inline: auto;
}

.page-width--narrow {
  width: min(calc(100% - 64px), 900px);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--cream {
  background: var(--cream);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

.section--orange {
  color: var(--white);
  background: var(--orange);
}

.section--green {
  color: var(--white);
  background: var(--green);
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-align: center;
}

.section-kicker--light {
  color: #ffd3b3;
}

.section-kicker--left {
  text-align: left;
}

.section-title {
  margin-bottom: 54px;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.35;
  text-align: center;
}

#india-voices-title {
  font-size: clamp(40px, 4.1vw, 52px);
}

@media (max-width: 680px) {
  #india-voices-title {
    font-size: 28px;
    word-break: normal;
  }
}

.section-title--orange {
  color: var(--orange);
}

.section-title--green {
  color: var(--green);
}

.section-lead {
  margin-bottom: 48px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.4;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button span {
  font-size: 24px;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(2, 69, 95, .28);
}

.button--blue:hover,
.button--blue:focus-visible {
  background: var(--blue-dark);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .8);
  background: rgba(15, 13, 10, .22);
  backdrop-filter: blur(6px);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.button--wide {
  display: flex;
  width: min(100%, 680px);
  margin: 50px auto 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--page)) / 2));
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .64), transparent);
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
  backdrop-filter: blur(12px);
}

.site-header__brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.site-header__brand img {
  width: 176px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: filter .25s ease;
}

.site-header.is-scrolled .site-header__brand img,
.site-header.is-open .site-header__brand img {
  filter: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.site-header__nav > a:not(.site-header__cta) {
  position: relative;
  padding: 10px 0;
}

.site-header__nav > a:not(.site-header__cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-header__nav > a:not(.site-header__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__plans {
  position: relative;
  flex: 0 0 auto;
}

.site-header__plans > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.site-header__plans > summary::-webkit-details-marker {
  display: none;
}

.site-header__plans > summary::after {
  content: "＋";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease;
}

.site-header__plans[open] > summary::after {
  transform: rotate(45deg);
}

.site-header__plans-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  width: 250px;
  padding: 9px;
  color: var(--ink);
  background: rgba(255, 253, 248, .98);
  border: 1px solid rgba(24, 23, 20, .1);
  box-shadow: 0 18px 42px rgba(24, 23, 20, .18);
  transform: translateX(-50%);
}

.site-header__plans-menu a {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.5;
  transition: color .2s ease, background .2s ease;
}

.site-header__plans-menu a:last-child {
  border-bottom: 0;
}

.site-header__plans-menu a:hover,
.site-header__plans-menu a:focus-visible {
  color: var(--orange);
  background: rgba(228, 94, 0, .08);
}

.site-header__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
}

.site-header__toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.site-header__toggle span {
  position: absolute;
  left: 9px;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.site-header__toggle span:first-child {
  top: 17px;
}

.site-header__toggle span:last-child {
  top: 27px;
}

.site-header.is-open .site-header__toggle span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.site-header.is-open .site-header__toggle span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  color: var(--white);
  background: var(--orange);
  border: 18px solid var(--orange);
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("../images/hero-poster.webp");
  background-position: center 45%;
  background-size: cover;
  transform: scale(1.01);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(20, 12, 5, .92) 0%, rgba(20, 12, 5, .72) 42%, rgba(20, 12, 5, .12) 75%),
    linear-gradient(0deg, rgba(13, 8, 3, .58) 0%, transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 784px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 68px;
}

.hero__logo {
  width: min(430px, 48vw);
  max-height: 105px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.hero__eyebrow {
  margin-bottom: 8px;
  color: #ffbb86;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(58px, 7.3vw, 104px);
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1.08;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .28);
}

.hero__lead {
  margin-bottom: 18px;
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 800;
  line-height: 1.75;
}

.hero__definition {
  margin-bottom: 20px;
  color: #ffbf8b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}

.hero__tags li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  backdrop-filter: blur(4px);
}

.hero__actions,
.closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions .button {
  min-width: 300px;
}

/* Proof */
.proof {
  color: var(--white);
  background: var(--ink);
}

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

.proof article {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.proof article:last-child {
  border-right: 0;
}

.proof span {
  margin-bottom: 2px;
  color: #ffba80;
  font-size: 11px;
  font-weight: 700;
}

.proof strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
}

.proof small {
  margin-left: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: .05em;
}

/* Manifest */
.manifest {
  min-height: 720px;
  color: var(--white);
  overflow: hidden;
}

.manifest__photo,
.manifest__shade {
  position: absolute;
  inset: 0;
}

.manifest__photo {
  background: url("../images/manifest.webp") center 52% / cover no-repeat;
}

.manifest__shade {
  background: linear-gradient(90deg, rgba(16, 13, 9, .92), rgba(16, 13, 9, .58) 54%, rgba(16, 13, 9, .15));
}

.manifest__inner {
  position: relative;
  z-index: 1;
}

.manifest .section-kicker {
  text-align: left;
}

.manifest h2 {
  margin-bottom: 34px;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 900;
  line-height: 1.35;
}

.manifest p {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.manifest strong {
  display: block;
  margin-top: 36px;
  color: #ffc28f;
  font-size: 22px;
  line-height: 1.75;
}

/* Empathy */
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.empathy-grid article {
  min-height: 180px;
  padding: 22px 20px;
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(70, 47, 24, .07);
}

.empathy-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.empathy-grid p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.empathy__answer {
  margin: 52px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.empathy__answer strong {
  color: var(--orange);
  font-size: 30px;
}

/* About */
.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .9fr;
  gap: 72px;
}

.about__copy h2,
.countdown h2,
.india h2,
.after h2 {
  margin-bottom: 30px;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.4;
}

.about__copy p {
  margin-bottom: 18px;
}

.about__copy strong {
  display: block;
  margin-top: 28px;
  color: var(--orange);
  font-size: 20px;
  line-height: 1.75;
}

.about__grid > img {
  width: 100%;
  min-height: 610px;
  border: 17px solid var(--orange);
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Five assets */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.asset-grid article {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 5px solid var(--orange);
}

.asset-grid article > span {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 1;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px #000;
}

.asset-grid img {
  width: 100%;
  height: 250px;
  margin-bottom: 24px;
  object-fit: cover;
}

.asset-grid h3 {
  margin-bottom: 12px;
  color: #ff9e55;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}

.asset-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.7;
}

.assets__answer {
  margin: 60px 0 0;
  font-size: 24px;
  text-align: center;
}

.assets__answer strong {
  color: #ff9e55;
  font-size: 30px;
}

/* Story */
.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 15px;
}

.story-card {
  min-height: 370px;
  padding: 36px 30px;
  border: 2px solid var(--line);
  background: var(--white);
}

.story-card--journey {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
}

.story-card__label {
  margin-bottom: 30px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .18em;
}

.story-card--journey .story-card__label {
  color: var(--white);
}

.story-card h3 {
  margin-bottom: 26px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.6;
}

.story-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 21px;
  font-size: 13px;
}

.story-card li::before {
  position: absolute;
  top: .82em;
  left: 0;
  width: 8px;
  height: 2px;
  background: currentColor;
  content: "";
}

.story-grid__arrow {
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
}

/* Countdown */
.countdown__grid {
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
}

.countdown__grid > img {
  width: 100%;
  height: 650px;
  border: 17px solid rgba(255, 255, 255, .92);
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.countdown .section-kicker {
  text-align: left;
}

.countdown__logo {
  margin-bottom: 18px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.045em;
  line-height: 1;
}

.countdown__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 34px 0 30px;
  border: 1px solid rgba(255, 255, 255, .4);
}

.countdown__steps article {
  min-height: 130px;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, .4);
}

.countdown__steps article:last-child {
  border-right: 0;
}

.countdown__steps span {
  color: #ffbf89;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.countdown__steps h3 {
  margin: 8px 0 4px;
  font-size: 16px;
}

.countdown__steps p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.countdown__grid > div > strong {
  color: #ffbf89;
  font-size: 22px;
}

/* Seven days */
.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day-grid article {
  min-height: 420px;
  color: var(--ink);
  background: var(--white);
}

.day-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.day-grid span {
  display: block;
  padding: 18px 15px 0;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .12em;
}

.day-grid h3 {
  min-height: 92px;
  margin: 4px 15px 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.day-grid p {
  margin: 0 15px 20px;
  font-size: 11px;
  line-height: 1.65;
}

.reflection-flow {
  display: flex;
  width: min(100%, 920px);
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 46px auto 0;
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, .7);
}

.reflection-flow p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.reflection-flow span {
  font-size: 22px;
}

/* India */
.india__header {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.india__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  border-bottom: 4px solid var(--orange);
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.india__route i {
  color: var(--ink);
  font-style: normal;
}

.india-gallery {
  display: grid;
  height: 650px;
  grid-template-columns: 1.3fr .7fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.india-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.india-gallery img:first-child {
  grid-row: 1 / 3;
}

.india-gallery img:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* Experiences */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.experience-grid article {
  overflow: hidden;
  background: var(--ink-soft);
}

.experience-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform .4s ease, filter .4s ease;
}

.experience-grid article:hover img {
  filter: saturate(1.1);
  transform: scale(1.035);
}

.experience-grid h3 {
  margin: 20px 18px 7px;
  color: #ff9e55;
  font-size: 17px;
}

.experience-grid p {
  margin: 0 18px 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

/* Voices */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-grid article {
  border-bottom: 5px solid var(--orange);
  background: var(--cream);
}

.voice-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.voice-grid div {
  padding: 26px 24px 30px;
}

.voice-grid small {
  color: var(--orange);
  font-weight: 800;
}

.voice-grid h3 {
  margin: 10px 0 14px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.6;
}

.voice-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.voices__note {
  margin: 18px 0 0;
  color: #6d685f;
  font-size: 11px;
  text-align: right;
}

/* Readiness */
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 42px;
}

.readiness-grid article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .65);
}

.readiness-grid span {
  font-size: 13px;
  font-weight: 800;
}

.readiness-grid strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 76px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.readiness-grid small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
}

.readiness > .page-width > p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Plans */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-grid article {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.plan-grid img {
  width: 100%;
  height: 280px;
  border: 17px solid var(--orange);
  object-fit: cover;
}

.plan-grid div {
  padding: 28px 28px 30px;
}

.plan-grid p {
  margin-bottom: 4px;
  color: #ff9e55;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .15em;
}

.plan-grid h3 {
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: 900;
}

.plan-grid span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.plan-grid a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .45);
  font-size: 13px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease;
}

.plan-grid a:hover {
  color: var(--ink);
  background: var(--white);
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-grid article {
  min-height: 240px;
  padding: 30px 28px;
  border: 1px solid rgba(22, 79, 59, .22);
}

.support-grid span {
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
}

.support-grid h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.support-grid p {
  margin-bottom: 0;
  color: #59554e;
  font-size: 13px;
}

/* After */
.after__intro {
  margin-bottom: 48px;
}

.after__intro .section-kicker {
  text-align: left;
}

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

.after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 34px;
}

.after-grid article {
  display: grid;
  align-items: stretch;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.after-grid img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.after-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.after-grid h3 {
  margin-bottom: 12px;
  color: var(--orange);
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  letter-spacing: -.03em;
}

.after-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

/* Briefing */
.briefing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.briefing-steps article {
  min-height: 235px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
}

.briefing-steps span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.briefing-steps h3 {
  margin: 26px 0 10px;
  font-size: 19px;
  font-weight: 900;
}

.briefing-steps p {
  margin-bottom: 0;
  color: #5f5a52;
  font-size: 13px;
}

.briefing__notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.briefing__notes li::before {
  margin-right: 8px;
  content: "●";
  font-size: 8px;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 58px 28px 46px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: absolute;
  top: 27px;
  left: 4px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  content: "Q";
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--orange);
  content: "＋";
  font-size: 24px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 58px 28px 46px;
  color: #5f5a52;
  font-size: 14px;
}

/* Closing */
.closing {
  position: relative;
  min-height: 720px;
  padding: 120px 0;
  color: var(--white);
  overflow: hidden;
}

.closing__photo,
.closing__shade {
  position: absolute;
  inset: 0;
}

.closing__photo {
  background: url("../images/closing.webp") center 48% / cover no-repeat;
}

.closing__shade {
  background: linear-gradient(90deg, rgba(16, 11, 7, .94), rgba(16, 11, 7, .64) 58%, rgba(16, 11, 7, .12));
}

.closing__inner {
  position: relative;
  z-index: 1;
}

.closing .section-kicker {
  text-align: left;
}

.closing h2 {
  max-width: 870px;
  margin-bottom: 30px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.4;
}

.closing p {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
}

.closing strong {
  display: block;
  margin: 38px 0 30px;
  color: #ffb378;
  font-size: 28px;
}

.closing__actions .button {
  min-width: 300px;
}

/* Footer */
.site-footer {
  padding: 80px 0 0;
  color: var(--white);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.site-footer__inner img {
  width: 260px;
  max-height: 85px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__inner p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
}

.site-footer__inner strong {
  color: #ff9e55;
  font-size: 18px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 15px 32px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer nav a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.site-footer__copyright {
  margin: 0;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  text-align: center;
}

/* Tablet */
@media (max-width: 1120px) {
  .site-header__nav {
    gap: 13px;
    font-size: 10px;
  }

  .asset-grid,
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .asset-grid article:nth-child(n + 4),
  .experience-grid article:nth-child(n + 4) {
    margin-top: 24px;
  }

  .day-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .day-grid article {
    min-height: 390px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 22px;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__nav {
    position: fixed;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 38px 38px;
    color: var(--ink);
    background: var(--paper);
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    overflow-y: auto;
  }

  .site-header.is-open .site-header__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__nav > a:not(.site-header__cta) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header__plans {
    border-bottom: 1px solid var(--line);
  }

  .site-header__plans > summary {
    justify-content: space-between;
    padding: 15px 0;
  }

  .site-header__plans-menu {
    position: static;
    width: 100%;
    padding: 0 0 10px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header__plans-menu a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .site-header__cta {
    margin-top: 24px;
    padding: 17px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__nav {
    position: fixed;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 38px 38px;
    color: var(--ink);
    background: var(--paper);
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    overflow-y: auto;
  }

  .site-header.is-open .site-header__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__nav > a:not(.site-header__cta) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header__plans {
    border-bottom: 1px solid var(--line);
  }

  .site-header__plans > summary {
    justify-content: space-between;
    padding: 15px 0;
  }

  .site-header__plans-menu {
    position: static;
    width: 100%;
    padding: 0 0 10px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header__plans-menu a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .site-header__cta {
    margin-top: 24px;
    padding: 17px;
  }

  .proof__inner {
    width: 100%;
  }

  .empathy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid,
  .countdown__grid,
  .india__header {
    grid-template-columns: 1fr;
  }

  .about__grid > img,
  .countdown__grid > img {
    height: 500px;
    min-height: auto;
  }

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

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

  .story-card {
    min-height: 0;
  }

  .story-card--journey {
    transform: none;
  }

  .story-grid__arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .india__route {
    justify-content: flex-start;
  }

  .plan-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid article {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
  }

  .voice-grid img {
    height: 100%;
    min-height: 280px;
  }

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

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

/* Mobile */
@media (max-width: 680px) {
  body {
    letter-spacing: .055em;
    line-height: 1.82;
  }

  .page-width,
  .page-width--narrow {
    width: min(calc(100% - 40px), var(--page));
  }

  .section {
    padding: 78px 0;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 38px;
    font-size: 32px;
    text-align: left;
  }

  .section-lead {
    font-size: 15px;
    text-align: left;
  }

  .button {
    width: 100%;
    min-height: 60px;
    gap: 14px;
    padding: 14px 18px;
    font-size: 13px;
  }

  .site-header__brand img {
    width: 150px;
    height: 42px;
  }

  .hero {
    min-height: 790px;
    border-width: 10px;
  }

  .hero__media {
    background-position: 61% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(16, 10, 5, .96) 0%, rgba(16, 10, 5, .82) 50%, rgba(16, 10, 5, .18) 100%),
      linear-gradient(90deg, rgba(16, 10, 5, .7), transparent);
  }

  .hero__inner {
    min-height: 770px;
    padding-top: 100px;
    padding-bottom: 38px;
  }

  .hero__logo {
    width: 250px;
    margin-bottom: 14px;
  }

  .hero__eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 50px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__definition {
    font-size: 13px;
  }

  .hero__actions,
  .closing__actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions .button,
  .closing__actions .button {
    min-width: 0;
  }

  .proof__inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .proof article {
    min-width: 34vw;
    min-height: 108px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    scroll-snap-align: start;
  }

  .proof strong {
    font-size: 39px;
  }

  .manifest {
    min-height: 680px;
  }

  .manifest__photo {
    background-position: 64% center;
  }

  .manifest__shade {
    background: linear-gradient(0deg, rgba(16, 13, 9, .96), rgba(16, 13, 9, .65) 72%, rgba(16, 13, 9, .25));
  }

  .manifest h2 {
    font-size: 38px;
  }

  .manifest p {
    font-size: 13px;
  }

  .manifest strong {
    font-size: 17px;
  }

  .empathy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .empathy-grid article {
    min-height: 152px;
    padding: 18px 15px;
  }

  .empathy-grid span {
    margin-bottom: 12px;
    font-size: 31px;
  }

  .empathy-grid p {
    font-size: 11px;
  }

  .empathy__answer,
  .assets__answer {
    margin-top: 42px;
    font-size: 18px;
    text-align: left;
  }

  .empathy__answer strong,
  .assets__answer strong {
    font-size: 22px;
  }

  .about__grid {
    gap: 38px;
  }

  .about__copy h2,
  .countdown h2,
  .india h2,
  .after h2 {
    font-size: 32px;
  }

  .about__copy p,
  .countdown p {
    font-size: 13px;
  }

  .about__copy strong {
    font-size: 16px;
  }

  .about__grid > img,
  .countdown__grid > img {
    height: 390px;
    border-width: 10px;
  }

  .asset-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .asset-grid article,
  .asset-grid article:nth-child(n + 4),
  .experience-grid article,
  .experience-grid article:nth-child(n + 4) {
    margin-top: 0;
  }

  .asset-grid img,
  .experience-grid img {
    height: 250px;
  }

  .countdown__grid {
    gap: 42px;
  }

  .countdown__logo {
    font-size: 43px;
  }

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

  .countdown__steps article:nth-child(2) {
    border-right: 0;
  }

  .countdown__steps article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .4);
  }

  .countdown__grid > div > strong {
    font-size: 17px;
  }

  .day-grid {
    display: flex;
    width: calc(100vw - 20px);
    gap: 12px;
    margin-right: -20px;
    overflow-x: auto;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
  }

  .day-grid article {
    min-width: 72vw;
    min-height: 380px;
    scroll-snap-align: start;
  }

  .reflection-flow {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .reflection-flow span {
    transform: rotate(90deg);
    text-align: center;
  }

  .india__header {
    gap: 22px;
  }

  .india__route {
    justify-content: flex-start;
    padding: 16px 0;
    font-size: 14px;
  }

  .india-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .india-gallery img:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .india-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .voice-grid article {
    display: block;
  }

  .voice-grid img {
    height: 240px;
    min-height: 0;
  }

  .readiness-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .readiness-grid article {
    min-height: 145px;
  }

  .readiness-grid span {
    font-size: 10px;
  }

  .readiness-grid strong {
    font-size: 56px;
  }

  .readiness > .page-width > p:last-child {
    font-size: 14px;
    text-align: left;
  }

  .plan-grid img {
    height: 250px;
    border-width: 10px;
  }

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

  .support-grid article {
    min-height: 0;
  }

  .after-grid article {
    display: block;
  }

  .after-grid img {
    height: 230px;
    min-height: 0;
  }

  .briefing-steps {
    grid-template-columns: 1fr;
  }

  .briefing-steps article {
    min-height: 0;
  }

  .briefing__notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .faq-list summary {
    padding: 23px 44px 23px 35px;
    font-size: 14px;
  }

  .faq-list summary::before {
    top: 21px;
    left: 0;
  }

  .faq-list details p {
    margin: -2px 0 24px 35px;
    font-size: 12px;
  }

  .closing {
    min-height: 690px;
    padding: 90px 0;
  }

  .closing__photo {
    background-position: 63% center;
  }

  .closing__shade {
    background: linear-gradient(0deg, rgba(16, 11, 7, .96), rgba(16, 11, 7, .65) 76%, rgba(16, 11, 7, .22));
  }

  .closing h2 {
    font-size: 35px;
  }

  .closing p {
    font-size: 14px;
  }

  .closing strong {
    font-size: 22px;
  }

  .site-footer {
    padding-top: 60px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
