:root {
  --navy: #081a3a;
  --navy-deep: #041127;
  --navy-soft: #12305c;
  --red: #c62836;
  --red-bright: #e43846;
  --gold: #d8ad48;
  --paper: #f5f6f8;
  --white: #ffffff;
  --ink: #101927;
  --muted: #5d6674;
  --line: rgba(8, 26, 58, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1160px, calc(100vw - 48px));
  --shadow: 0 28px 80px rgba(3, 13, 31, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(4, 17, 39, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.46);
  transform-origin: 50% 27%;
}

.brand-name {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-name span {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 650;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .brand-name {
    display: none;
  }

  .main-nav {
    gap: 17px;
    font-size: 0.8rem;
  }

  .main-nav .nav-cta {
    padding-inline: 14px;
  }
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 9px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--red-bright);
  transition: right 180ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 11px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 18%, rgba(40, 80, 143, 0.35), transparent 30%),
    radial-gradient(circle at 91% 78%, rgba(198, 40, 54, 0.2), transparent 25%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -210px;
  right: -150px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.025), 0 0 0 144px rgba(255, 255, 255, 0.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32%;
  height: 6px;
  background: var(--red);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--red-bright);
}

.hero h1,
.section-heading h2,
.heritage-copy h2,
.values-top h2,
.membership-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 6.2vw, 5.9rem);
  text-wrap: balance;
}

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-bright);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.image-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--navy-soft);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 17, 39, 0.48));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.04);
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual figcaption span:first-child {
  color: var(--red);
  font-weight: 800;
}

.hero-seal {
  position: absolute;
  right: -32px;
  bottom: 64px;
  width: 92px;
  height: 92px;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 15px 38px rgba(3, 13, 31, 0.34);
  transform: rotate(-1.2deg);
}

.hero-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta > div {
  display: grid;
  gap: 3px;
  padding: 25px 24px 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta > div:first-child {
  padding-left: 0;
}

.hero-meta > div:last-child {
  border-right: 0;
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: 132px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.heritage-copy h2,
.values-top h2,
.membership-copy h2 {
  font-size: clamp(2.6rem, 5.5vw, 5.1rem);
  text-wrap: balance;
}

.section-heading > p:last-child,
.heading-row > p,
.heritage-copy > p:last-child,
.membership-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  min-height: 276px;
  padding: 30px 34px 38px;
  border-right: 1px solid var(--line);
}

.pillar:first-child {
  padding-left: 0;
}

.pillar:last-child {
  border-right: 0;
}

.pillar-number,
.activity-card > span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pillar h3,
.activity-card h3,
.role-card h3,
.membership-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
}

.pillar h3 {
  font-size: 1.8rem;
}

.pillar p {
  margin: 12px 0 0;
  color: var(--muted);
}

.homeland {
  background: var(--white);
}

.homeland-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: end;
  margin-top: 56px;
}

.homeland-card {
  margin: 0;
}

.homeland-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-soft);
}

.homeland-card-portrait .homeland-image {
  aspect-ratio: 4 / 5;
}

.homeland-card-portrait .homeland-image img {
  object-position: 50% 30%;
}

.homeland-eras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.homeland-eras article {
  min-height: 230px;
  padding: 28px 30px 34px;
  border-right: 1px solid var(--line);
}

.homeland-eras article:first-child {
  padding-left: 0;
}

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

.homeland-eras span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homeland-eras h3 {
  margin: 42px 0 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}

.homeland-eras p {
  margin: 12px 0 0;
  color: var(--muted);
}

.homeland-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 17, 39, 0.34));
  pointer-events: none;
}

.homeland-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 600ms ease;
}

.homeland-card:hover .homeland-image img {
  transform: scale(1.025);
}

.homeland-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 3px solid var(--red);
}

.homeland-card figcaption strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.homeland-card figcaption span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.heritage-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.heritage-band::before {
  content: "BETH NAHRIN";
  position: absolute;
  right: -2vw;
  top: -0.3em;
  color: rgba(255, 255, 255, 0.028);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 1;
  white-space: nowrap;
}

.heritage-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
  align-items: center;
}

.heritage-image {
  position: relative;
  margin: 0;
}

.heritage-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -18px;
  bottom: -18px;
  width: 55%;
  height: 58%;
  background: var(--red);
}

.heritage-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.heritage-image figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  background: rgba(4, 17, 39, 0.86);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--gold);
}

.heritage-statement {
  margin: 42px 0 26px;
  padding-left: 28px;
  border-left: 3px solid var(--red);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.45;
}

.heritage-copy > p:last-child {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.62);
}

.heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: end;
}

.heading-row > p {
  margin: 0 0 8px;
}

.activity-list {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.activity-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 154px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.activity-card:hover {
  padding-inline: 28px;
  background: var(--white);
}

.activity-card > span {
  margin: 0;
}

.activity-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.activity-card p {
  max-width: 680px;
  margin: 7px 0 0;
  color: var(--muted);
}

.activity-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-style: normal;
  transition: color 180ms ease, background 180ms ease;
}

.activity-card:hover i {
  background: var(--red);
  color: var(--white);
}

.values {
  padding: 120px 0;
  color: var(--white);
  background: linear-gradient(135deg, #102e5c, var(--navy));
}

.values-top {
  max-width: 780px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.values-grid article {
  min-height: 260px;
  padding: 30px 28px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.values-grid article:first-child {
  padding-left: 0;
}

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

.value-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 66px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.values-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.values-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.team-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  margin-top: 70px;
}

.team-feature {
  position: relative;
  min-height: 458px;
  padding: 42px;
  background: var(--red);
  color: var(--white);
}

.team-feature::after {
  content: "+";
  position: absolute;
  right: 26px;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 1;
}

.team-feature > p {
  margin: 0 0 68px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-feature h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
}

.team-feature span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}

.feature-line {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 36px 0;
  background: rgba(255, 255, 255, 0.3);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.role-card {
  min-height: 114px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.role-card h3 {
  font-size: 1.16rem;
  line-height: 1.3;
}

.role-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-card-open {
  background: transparent;
  border-style: dashed;
}

.role-card-open h3 {
  color: var(--muted);
}

.membership {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.membership::after {
  content: "";
  position: absolute;
  right: -230px;
  bottom: -320px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.02), 0 0 0 180px rgba(255, 255, 255, 0.015);
}

.membership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
  align-items: start;
}

.membership-copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.64);
}

.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 173, 72, 0.15);
}

.membership-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.membership-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.membership-steps > li > span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.membership-steps h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.membership-steps p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.closing {
  padding: 108px 0;
  text-align: center;
  background: var(--white);
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing p {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.closing h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.closing .button {
  margin-top: 36px;
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.55fr 1fr 1fr;
  gap: 52px;
  padding: 74px 0 62px;
}

.footer-brand img {
  width: 166px;
  padding: 7px;
  background: var(--white);
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact,
.footer-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-nav > p,
.footer-contact > p,
.footer-note > p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-note span {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.7rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-credit strong {
  color: var(--gold);
  font-weight: 760;
  letter-spacing: 0.12em;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid,
  .heritage-grid,
  .membership-grid,
  .team-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
    padding-bottom: 52px;
  }

  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .image-frame {
    aspect-ratio: 16 / 10;
  }

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

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

  .pillar,
  .pillar:first-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .pillar-number {
    margin-bottom: 24px;
  }

  .heritage-grid {
    gap: 72px;
  }

  .homeland-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .homeland-image,
  .homeland-card-portrait .homeland-image {
    aspect-ratio: 4 / 5;
  }

  .homeland-eras {
    grid-template-columns: 1fr;
  }

  .homeland-eras article,
  .homeland-eras article:first-child {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .homeland-eras article:last-child {
    border-bottom: 0;
  }

  .homeland-eras h3 {
    margin-top: 24px;
  }

  .heritage-image {
    max-width: 450px;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

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

  .team-layout,
  .membership-grid {
    gap: 64px;
  }

  .team-feature {
    min-height: 390px;
  }

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

}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    min-height: calc(100svh - 74px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 22px;
    background: var(--navy-deep);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--serif);
    font-size: 1.6rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 28px;
    padding: 15px 18px;
    text-align: center;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    gap: 32px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.5vw, 4.15rem);
  }

  .hero-intro {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    width: calc(100% - 18px);
    padding: 10px 10px 12px;
  }

  .image-frame {
    aspect-ratio: 5 / 4;
  }

  .hero-seal {
    right: -14px;
    bottom: 55px;
    width: 70px;
    height: 70px;
    border-width: 4px;
  }

  .hero-meta > div {
    padding: 16px 10px 18px;
  }

  .hero-meta > div:first-child {
    padding-left: 0;
  }

  .section,
  .heritage-band,
  .values,
  .membership {
    padding-block: 88px;
  }

  .section-heading h2,
  .heritage-copy h2,
  .values-top h2,
  .membership-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .pillar-grid,
  .activity-list,
  .team-layout,
  .values-grid {
    margin-top: 50px;
  }

  .homeland-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 50px;
  }

  .homeland-image,
  .homeland-card-portrait .homeland-image {
    aspect-ratio: 4 / 3;
  }

  .activity-card {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 24px 2px;
  }

  .activity-card:hover {
    padding-inline: 12px;
  }

  .activity-card i {
    display: none;
  }

  .values-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article,
  .values-grid article:first-child {
    min-height: 0;
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .value-symbol {
    margin-bottom: 30px;
  }

  .team-feature {
    min-height: 380px;
    padding: 34px 28px;
  }

  .role-card {
    min-height: 104px;
    padding-inline: 22px;
  }

  .membership-steps li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .closing {
    padding-block: 84px;
  }

  .closing h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 58px 46px;
  }

  .footer-note {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cinematic motion layer */
body:not(.intro-finished) {
  overflow: hidden;
}

.intro-curtain {
  position: fixed;
  z-index: 2000;
  inset: 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 46%, rgba(36, 77, 137, 0.68), transparent 34%),
    linear-gradient(135deg, #020918, #061631 52%, #081d42);
  transition: opacity 620ms cubic-bezier(0.7, 0, 0.2, 1), visibility 620ms;
}

.intro-curtain::before,
.intro-curtain::after {
  content: "";
  position: absolute;
  z-index: 9;
  inset: 20px;
  border: 1px solid rgba(216, 173, 72, 0.22);
  transform: scale(0.96);
  pointer-events: none;
}

.intro-curtain::after {
  inset: 32px;
  border-color: rgba(255, 255, 255, 0.07);
}

.intro-curtain.is-playing::before,
.intro-curtain.is-playing::after {
  animation: intro-frame 1.2s 120ms forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-curtain.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-skip {
  position: absolute;
  z-index: 20;
  top: 46px;
  right: 52px;
  padding: 8px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  font: 700 0.68rem/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.intro-skip span {
  display: inline-block;
  margin-left: 7px;
  color: var(--gold);
  transition: transform 180ms ease;
}

.intro-skip:hover,
.intro-skip:focus-visible { color: var(--white); }
.intro-skip:hover span { transform: translate(2px, -2px); }

.intro-curtain__aurora {
  position: absolute;
  inset: -40%;
  opacity: 0;
  background:
    conic-gradient(from 220deg at 50% 50%, transparent, rgba(198, 40, 54, 0.22), transparent 24%, rgba(216, 173, 72, 0.2), transparent 50%),
    radial-gradient(circle, rgba(58, 108, 180, 0.18), transparent 48%);
  filter: blur(35px);
  pointer-events: none;
}

.is-playing .intro-curtain__aurora {
  animation: intro-aurora 4.3s both ease-in-out;
}

.intro-curtain__rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 1100px);
  aspect-ratio: 1;
  opacity: 0;
  background: repeating-conic-gradient(from 0deg, rgba(216, 173, 72, 0.11) 0 0.35deg, transparent 0.35deg 12deg);
  -webkit-mask-image: radial-gradient(circle, #000 0 9%, transparent 57%);
  mask-image: radial-gradient(circle, #000 0 9%, transparent 57%);
  transform: translate(-50%, -50%) rotate(-18deg);
  pointer-events: none;
}

.is-playing .intro-curtain__rays {
  animation: intro-rays 4.3s 350ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.flag-stage {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(1040px, calc(100vw - 110px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(15px, 3vw, 42px);
  transform: translate(-50%, -50%);
  perspective: 1300px;
  transition: opacity 540ms ease, filter 540ms ease;
}

.flag-card {
  --flag-from-x: 0;
  --flag-from-y: 0;
  --flag-rotate: 0deg;
  position: relative;
  margin: 0;
  opacity: 0;
  transform: translate3d(var(--flag-from-x), var(--flag-from-y), 0) rotate(var(--flag-rotate)) scale(0.72);
  transform-origin: center;
  transition: transform 620ms cubic-bezier(0.7, 0, 0.2, 1), opacity 420ms ease, filter 620ms ease;
}

.flag-card--assyrian { --flag-from-x: -55vw; --flag-rotate: -7deg; }
.flag-card--syriac { --flag-from-y: 55vh; --flag-rotate: 2deg; }
.flag-card--chaldean { --flag-from-x: 55vw; --flag-rotate: 7deg; }

.is-playing .flag-card {
  animation: flag-arrive 1050ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.is-playing .flag-card--assyrian { animation-delay: 120ms; }
.is-playing .flag-card--syriac { animation-delay: 360ms; }
.is-playing .flag-card--chaldean { animation-delay: 600ms; }

.flag-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.flag-card__visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 7px;
  background: linear-gradient(105deg, transparent 15%, rgba(255, 255, 255, 0.36) 42%, transparent 62%);
  transform: translateX(-140%);
  mix-blend-mode: screen;
}

.is-playing .flag-card__visual::before {
  animation: flag-sheen 1.15s 1.1s both ease-in-out;
}

.flag-card__visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 7px;
  box-shadow: inset 0 0 35px rgba(2, 9, 24, 0.28);
  pointer-events: none;
}

.flag-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-card__visual span {
  position: absolute;
  z-index: -1;
  inset: -20px;
  background: radial-gradient(circle, rgba(216, 173, 72, 0.26), transparent 65%);
  filter: blur(22px);
}

.flag-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 10px 0;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}

.flag-card figcaption b {
  font-size: clamp(0.67rem, 1vw, 0.82rem);
  letter-spacing: 0.19em;
}

.flag-card figcaption small {
  color: var(--gold);
  font-size: 0.76rem;
}

.is-uniting .flag-stage {
  opacity: 0;
  filter: blur(16px);
}

.is-uniting .flag-card {
  animation: none;
  opacity: 0;
  transform: scale(0.18) rotate(0);
}

.unity-reveal {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(620px, calc(100vw - 54px));
  justify-items: center;
  opacity: 0;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.66);
  transition: opacity 620ms ease, transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-resolved .unity-reveal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.unity-reveal__rings {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.unity-reveal__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 173, 72, 0.48);
  border-radius: 50%;
  opacity: 0;
}

.is-resolved .unity-reveal__rings i { animation: unity-ring 1.4s both ease-out; }
.is-resolved .unity-reveal__rings i:nth-child(2) { animation-delay: 140ms; }
.is-resolved .unity-reveal__rings i:nth-child(3) { animation-delay: 280ms; }

.unity-reveal__mark {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(216, 173, 72, 0.58);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 100px rgba(216, 173, 72, 0.28);
}

.unity-reveal__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42);
  transform-origin: 50% 25%;
}

.unity-reveal p,
.unity-reveal strong {
  margin: 0;
  text-transform: uppercase;
}

.unity-reveal p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.34em;
}

.unity-reveal strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.055em;
}

.unity-reveal__line {
  width: min(360px, 66vw);
  height: 1px;
  margin: 18px 0 17px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.unity-reveal__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
}

.is-resolved .unity-reveal__line span {
  animation: intro-line 920ms 160ms forwards ease-in-out;
}

.scroll-progress {
  position: fixed;
  z-index: 160;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red-bright), var(--gold));
  box-shadow: 0 0 18px rgba(216, 173, 72, 0.55);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-noise {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(216, 173, 72, 0.14);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-drift 13s ease-in-out infinite alternate;
}

.hero-orbit-one {
  width: 460px;
  height: 460px;
  top: 15%;
  left: -280px;
}

.hero-orbit-two {
  width: 230px;
  height: 230px;
  right: 8%;
  bottom: 10%;
  animation-delay: -5s;
}

.intro-finished .hero-copy > * {
  animation: hero-rise 840ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-finished .hero-copy > :nth-child(2) { animation-delay: 90ms; }
.intro-finished .hero-copy > :nth-child(3) { animation-delay: 170ms; }
.intro-finished .hero-copy > :nth-child(4) { animation-delay: 250ms; }

.hero-visual {
  --hero-shift: 0px;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  transform: translateY(var(--hero-shift)) perspective(1100px) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-visual .image-frame img {
  animation: hero-cinema 14s ease-in-out infinite alternate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(216, 173, 72, 0.32);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 112px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 42%;
  background: var(--gold);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

.film-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: var(--white);
  background: radial-gradient(circle at 8% 15%, rgba(198, 40, 54, 0.18), transparent 28%), linear-gradient(135deg, #030d1e, #081a3a 62%, #0e2449);
}

.film-section::before {
  content: "ܒܝܬ ܢܗܪܝܢ";
  position: absolute;
  right: -0.03em;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.film-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.film-copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.film-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.film-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-note span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(216, 173, 72, 0.56);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
}

.film-frame__glow {
  position: absolute;
  z-index: -1;
  inset: -20%;
  background: radial-gradient(circle, rgba(216, 173, 72, 0.18), transparent 62%);
  filter: blur(36px);
  animation: film-glow 5s ease-in-out infinite alternate;
}

.film-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.activity-card,
.pillar,
.role-card,
.values-grid article,
.homeland-card {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease, border-color 300ms ease;
}

.activity-card:hover,
.pillar:hover,
.role-card:hover,
.values-grid article:hover,
.homeland-card:hover {
  transform: translateY(-7px);
}

.homeland-card:hover {
  box-shadow: 0 30px 70px rgba(4, 17, 39, 0.18);
}

.homeland-card img,
.heritage-image img {
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.homeland-card:hover img,
.heritage-image:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 740ms var(--reveal-delay, 0ms) ease, transform 740ms var(--reveal-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes intro-frame { to { transform: scale(1); } }
@keyframes intro-aurora {
  0% { opacity: 0; transform: rotate(-8deg) scale(0.84); }
  28% { opacity: 1; }
  100% { opacity: 0.45; transform: rotate(14deg) scale(1.16); }
}
@keyframes intro-rays {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-18deg) scale(0.62); }
  42% { opacity: 0.65; }
  100% { opacity: 0.18; transform: translate(-50%, -50%) rotate(9deg) scale(1.18); }
}
@keyframes flag-arrive {
  0% {
    opacity: 0;
    transform: translate3d(var(--flag-from-x), var(--flag-from-y), -260px) rotate(var(--flag-rotate)) scale(0.72);
    filter: blur(12px) saturate(0.55);
  }
  64% { opacity: 1; }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    filter: blur(0) saturate(1);
  }
}
@keyframes flag-sheen {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(160%); }
}
@keyframes unity-ring {
  0% { opacity: 0.72; transform: scale(0.42); }
  100% { opacity: 0; transform: scale(2.65); }
}
@keyframes intro-mark {
  from { opacity: 0; transform: scale(0.72) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes intro-copy {
  from { opacity: 0; transform: translateY(14px); letter-spacing: 0.46em; }
  to { opacity: 1; transform: none; }
}
@keyframes intro-line { to { transform: translateX(100%); } }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-cinema {
  from { transform: scale(1.02); filter: saturate(0.9); }
  to { transform: scale(1.095); filter: saturate(1.08); }
}
@keyframes orbit-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, -18px, 0) scale(1.08); }
}
@keyframes scroll-pulse {
  0% { transform: translateY(-110%); }
  70%, 100% { transform: translateY(250%); }
}
@keyframes film-glow { to { opacity: 0.55; transform: scale(1.08); } }

@media (max-width: 980px) {
  .film-grid { grid-template-columns: 1fr; }
  .film-copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .intro-curtain::before { inset: 12px; }
  .intro-curtain::after { inset: 20px; }
  .intro-skip { top: 30px; right: 28px; }
  .flag-stage {
    width: calc(100vw - 38px);
    gap: 7px;
  }
  .flag-card__visual { padding: 3px; }
  .flag-card__visual::before,
  .flag-card__visual::after { inset: 3px; }
  .flag-card figcaption {
    display: grid;
    gap: 3px;
    padding: 10px 2px 0;
    text-align: center;
  }
  .flag-card figcaption b {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }
  .flag-card figcaption small { font-size: 0.62rem; }
  .unity-reveal__mark { width: 92px; height: 92px; }
  .unity-reveal__rings { top: 44px; width: 100px; height: 100px; }
  .unity-reveal strong { line-height: 1.12; }
  .film-section { padding: 82px 0; }
  .film-copy h2 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .scroll-cue { display: none; }
  .hero-visual::after { inset: 10px -10px -10px 10px; }
  .hero-visual { transform: translateY(var(--hero-shift)); }
  .activity-card:hover,
  .pillar:hover,
  .role-card:hover,
  .values-grid article:hover,
  .homeland-card:hover { transform: none; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .intro-curtain {
    display: none;
  }

  body:not(.intro-finished) {
    overflow: auto;
  }
}
